VB.NET How to minimize the window on the taskbar?

How can I minimize the window to the taskbar?
im using:

FormBorderStyle = Windows.Forms.FormBorderStyle.None 
+6
source share
1 answer

1

 Me.WindowState = FormWindowState.Minimized 

;)

+22
source

Source: https://habr.com/ru/post/918467/


All Articles