How can I change window form size at runtime?
I saw examples, but every one requires Form.Size property. This property can be set like here: http://msdn.microsoft.co
You can change the height of a form by doing the following where you want to change the size (substitute '10' for your size):
this.Height = 10;
This can be done with the width as well:
this.Width = 10;