What I\'m doing is I have a full-screen form, with no title bar, and consequently lacks the minimize/maximize/close buttons found in the upper-right hand corner. I\'m wanting to
in c#.net
this.WindowState = FormWindowState.Minimized
private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
if(e.KeyChar == 'm')
this.WindowState = FormWindowState.Minimized;
}
Form myForm;
myForm.WindowState = FormWindowState.Minimized;
FormName.WindowState = FormWindowState.Minimized;