C# WinForms – How to Resize a Windows Form

c++resizewindow-resizewinforms

I am making a Windows Forms application. I want the forms height to increase after a button is pressed. How do I do this?

Best Answer

Use the Height property. For instance:

this.Height = newHeight;
Related Question