gpt4 book ai didi

.net - 如何使Windows Forms .NET应用程序显示为任务栏图标?

转载 作者:行者123 更新时间:2023-12-03 12:41:49 26 4
gpt4 key购买 nike

要使您的.NET应用程序显示在Windows系统托盘中作为图标,需要做些什么?
您如何处理上述图标上的鼠标单击?

最佳答案

首先,将NotifyIcon控件添加到窗体。然后连接“通知”图标即可执行所需的操作。

如果要将其隐藏在托盘上,请尝试最小化。

Private Sub frmMain_Resize(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Resize
If Me.WindowState = FormWindowState.Minimized Then
Me.ShowInTaskbar = False
Else
Me.ShowInTaskbar = True
End If
End Sub

Private Sub NotifyIcon1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyIcon1.MouseClick
Me.WindowState = FormWindowState.Normal
End Sub

我偶尔会使用气球文本来通知用户-这样做是这样的:

 Me.NotifyIcon1.ShowBalloonTip(3000, "This is a notification title!!", "This is notification text.", ToolTipIcon.Info)

关于.net - 如何使Windows Forms .NET应用程序显示为任务栏图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/158895/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com