Is there a way to programmatically minimize a window

前端 未结 10 545
感动是毒
感动是毒 2021-02-03 17:09

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

10条回答
  •  情书的邮戳
    2021-02-03 17:25

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    
    Me.Hide()
    
    End Sub
    

提交回复
热议问题