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

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

相关文章

Format[$] ( expr [ , fmt ] ) format 返回变体型 format$ 强...
VB6或者ASP 格式化时间为 MM/dd/yyyy 格式,竟然没有好的办...
在项目中添加如下代码:新建窗口来显示异常信息。 Namespace...
转了这一篇文章,原来一直想用C#做k3的插件开发,vb没有C#用...
Sub 分列() ‘以空格为分隔符,连续空格只算1个。对所选...
  窗体代码 1 Private Sub Text1_OLEDragDrop(Data As Dat...