C# picturebox question [closed]?

No, by default it does not come with actual size. It does, however, come with a manual, a careful perusal of which reveals that the key lies in setting the control's SizeMode property to the PictureBoxSizeMode value that you desire. In this case, I suspect that's AutoSize, which ensures that the picture box control is resized according to the actual size of the image that it displays.

You can set this property either in the Visual Studio designer using the Properties window, or through code using the following line in your form's constructor method: myPictureBox. SizeMode = PictureBoxSizeMode.AutoSize.

This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions