S Simon Schmitz Sep 30, 2003 #2 With the FormWindowState-Enumeration! The default value of FormWindowState is 'Normal'. If the form is minimized this value is 'Minimized'. WindowState = FormWindowState.Minimized; if (this.WindowState.ToString() == "Minimized") { ... }
With the FormWindowState-Enumeration! The default value of FormWindowState is 'Normal'. If the form is minimized this value is 'Minimized'. WindowState = FormWindowState.Minimized; if (this.WindowState.ToString() == "Minimized") { ... }
H Herfried K. Wagner [MVP] Sep 30, 2003 #3 Suhail Salman said: how can i know if my form is minimized by the user? Click to expand... You can check the form's 'WindowState' properts in the form's 'Resize' event.
Suhail Salman said: how can i know if my form is minimized by the user? Click to expand... You can check the form's 'WindowState' properts in the form's 'Resize' event.