
如何将图标放在系统托盘上? 及单击最小化到系统托盘上,再单击系统托盘上的图标弹出窗体界面,请大虾指教,谢谢
__________________________________________________________________________
看这里吧,写得很清楚。
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为真然后关闭窗口的的项,使程序可以退出。
__________________________________________________________________________
好的,谢谢各位,成功了
__________________________________________________________________________