开发者

how to set image width and height in vb.net

In html I just do <img src="x.jpg" width="1px" height="2px"> how about in vb.开发者_C百科net. Is there an easy way to do this. When you are viewing the image through the picture box


How do you display the image? If you load an image into the Image property of a PictureBox you can use the SizeMode property to stretch the image to the size of the PictureBox. You can then set the width and height of the PictureBox.

PictureBox1.Load("image.png")
PictureBox1.SizeMode = PictureBoxSizeMode.Stretch
PictureBox1.Size = New Size(width, height)
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜