G Guest May 19, 2004 #1 How to check Maximize button click event of a Form or how to check whether present size of form is maximum available size
How to check Maximize button click event of a Form or how to check whether present size of form is maximum available size
M Morten Wennevik May 19, 2004 #2 Hi Sachin, Well, you could handle the SizeChanged event and check if(WindowState == FormWindowState.Maximized) { // user or something maximized the window } Happy coding! Morten Wennevik [C# MVP]
Hi Sachin, Well, you could handle the SizeChanged event and check if(WindowState == FormWindowState.Maximized) { // user or something maximized the window } Happy coding! Morten Wennevik [C# MVP]