8

How can i Minimize the window to the Taskbar?
im using:

FormBorderStyle = Windows.Forms.FormBorderStyle.None
BlackOpty
  • 241
  • 6
  • 9
  • 13

1 Answers1

32

1:

Me.WindowState = FormWindowState.Minimized

;)

nnm
  • 865
  • 1
  • 8
  • 9
  • How can I restore the form using a shortcut (for example Ctrl+R) so I can restore and bring the form to focus again. – Alaa Sadik Apr 25 '20 at 13:50