Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在此处发布此内容是因为在尝试隐藏系统托盘中的表单时,我花了很多时间来理解整个事情是如何工作的。
我的问题基本上是:如何将运行操作的 Windows 窗体隐藏到系统托盘?
CFP。
第一步是显示您需要隐藏的来源。确保不要将其设为模态。
Dim F as New MyForm Form.Show()
然后,创建一个通知图标,并将以下内容与其点击功能相关联:
Me.Visible = Not Me.Visible
不过要小心。如果您首先使用 显示表单ShowDialog,则设置Visible = False将关闭表单并销毁它(例如,如果您使用与表单通信的单独线程,这可能会变得令人讨厌)。
ShowDialog
Visible = False