我一直在处理个人项目的功能,该功能在托盘中有气球通知。问题?它们仅适用于Windows 8.1和Windows 10.实际上,这些是从屏幕右侧滑出的通知。我查看了MSDN上的NotifyIcon函数,并通过它编写了我的代码。我不知道发生了什么。
以下是适用于Windows 8.1和10的代码
private void CloseNotification()
{
var balloonNotification = new NotifyIcon()
{
Visible = true,
Icon = System.Drawing.SystemIcons.Information,
BalloonTipTitle = "Alert!",
BalloonTipText = "Program will remain running in the background",
};
//show the balloon notification
balloonNotification.ShowBalloonTip(2);
balloonNotification.Dispose();
}
我在表单上按下按钮时调用此方法。
发生了什么?