Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道出了什么问题,在这里搜索后我发现这可能是由于禁用了气球,但那不是我的情况。我正在使用简单的代码,但它不起作用。谢谢
NotifyIcon ntf = new NotifyIcon(); ntf.BalloonTipText="bla"; ntf.Visible=true; ntf.ShowBalloonTip(3000);
您也应该添加图标
NotifyIcon ntf = new NotifyIcon(); ntf.BalloonTipText="bla"; ntf.Visible=true; ntf.Icon = new Icon("myApp.ico"); ntf.ShowBalloonTip(3000);