我已经做了一段时间了,我想知道如何在Visual中使用NotifyIcon。我已经知道这里的密码是:
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Timer1.Start()
NotifyIcon1.Visible = True
NotifyIcon1.ShowBalloonTip(0)
End Sub但我没有收到通知/气球。有人能帮忙吗?
发布于 2019-01-05 17:22:25
我已经想明白了。我现在知道,我需要使用一个图标,以使一个信息“泡沫”出现。感谢那些帮助我的人!
发布于 2021-10-26 14:19:39
首先使用System.IO导入,然后将此代码复制到按钮中
_
notifyIcon1.BalloonTipTitle = "Welcome to ";
notifyIcon1.BalloonTipText = "Notify you for the use of this Software!!!";
notifyIcon1.ShowBalloonTip(1000);https://stackoverflow.com/questions/46798159
复制相似问题