How to minimize form in C#?
To minimize a form in C# you can useFormWindowState.Minimized
, See below how to use it:this
is a reference to the form.WindowState
will give you access to change state of current state whether is minimized or maximized.
this.WindowState = FormWindowState.Minimized;