[VB.NET]如何将图标放在系统托盘上

来源:互联网 发布:c语言and符号的优先级 编辑:程序博客网 时间:2024/04/29 03:43
VB.NET源码-156个实用实例哦……如何将图标放在系统托盘上
如何将图标放在系统托盘上? 及单击最小化到系统托盘上,再单击系统托盘上的图标弹出窗体界面,请大虾指教,谢谢

__________________________________________________________________________
看这里吧,写得很清楚。
http://hi.baidu.com/winlt/blog/item/99056d277a390a03908f9d64.html
__________________________________________________________________________
加入一个NotifyIcon控件,然后

Dim boolClose As Boolean = False

Private Sub Form1_FormClosed(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed
NotifyIcon1.Visible = False
End Sub

'' 点击关闭时最小化到System Tray,而不关闭
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
If boolClose = False Then
e.Cancel = True
Me.Visible = False
NotifyIcon1.Visible = True
End If
End Sub

'' 点击System Tray图标时显示主窗体
Private Sub NotifyIcon1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyIcon1.MouseClick
If e.Button = Windows.Forms.MouseButtons.Left Then
Me.Visible = True
NotifyIcon1.Visible = False
End If
End Sub
__________________________________________________________________________
这样会退不出程序,要在菜单中和NotifyIcon的右键菜单中加入令boolClose为真然后关闭窗口的的项,使程序可以退出。
__________________________________________________________________________
好的,谢谢各位,成功了
__________________________________________________________________________
原创粉丝点击