Minimize / Restore a WinForm programmatically
C#
3
Posts
2
Posters
0
Views
1
Watching
-
How do I programmatically minimize a Form? (I also want to restore the size programmatically). I'm using VS2003 .NET 1.1.
-
How do I programmatically minimize a Form? (I also want to restore the size programmatically). I'm using VS2003 .NET 1.1.
Use the
WindowState
property of your form. The size can be adjusted using theSize
property, surprisingly... :laugh:Regards, mav -- Black holes are the places where God divided by 0...
-
Use the
WindowState
property of your form. The size can be adjusted using theSize
property, surprisingly... :laugh:Regards, mav -- Black holes are the places where God divided by 0...
great, got it. Thanks.