每当我的表单关闭或最小化时,我需要隐藏三个复选框。我知道如何使用 FormClosing 事件隐藏它们。这就是我所拥有的:
Public Sub Tickers_Closed(sender As Object, e As EventArgs) Handles Me.FormClosing
Nordeen_Investing_3.CheckBox_NASDAQ.Hide()
Nordeen_Investing_3.CheckBox_NYSE.Hide()
Nordeen_Investing_3.CheckBox_AMEX.Hide()
End Sub
表单最小化时如何隐藏它们?