0
How can I resize controls with Code in Winforms C#?
I mean modify the control size with the (example) PictureBox.Size = Propertie, for example, when I click that PicBox?
1 ответ
0
picturebox1.Width = xx;
picturebox1.Height = xx;
I mean modify the control size with the (example) PictureBox.Size = Propertie, for example, when I click that PicBox?