NotifyIcon没有触发双击事件

时间:2010-03-01 18:45:54

标签: .net windows vb.net notifyicon

我有一个双击事件,用于显示我的主表单的通知图标。双击事件未触发。即使我在代码中放置一个断点,它也永远不会被执行。以下是我到目前为止的情况:

 Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As FormClosingEventArgs) Handles Me.FormClosing
    Me.WindowState = FormWindowState.Minimized
    Me.Visible = False
    NotifyIcon1.Visible = True
    e.Cancel = True

End Sub

Private Sub NotifyIcon1_MouseDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyIcon1.MouseDoubleClick

    Me.Visible = True
    Me.WindowState = FormWindowState.Normal
    Me.Activate()
    Me.BringToFront()
    Me.Focus()
    Me.Show()


End Sub

过多的东西是我尝试的方式,我可以想到让表格显示。

提前感谢。

1 个答案:

答案 0 :(得分:0)

当我在应用程序中只有自己的通知图标时,这是有效的。所以我使用notifyicon的工作原理。还有什么可能是错的?