如何在c#中解决任务栏中的WPF弹出通知到屏幕的右下角?

时间:2015-02-11 05:34:25

标签: c# wpf popup notifyicon

我坚持使用任务栏中的WPF弹出通知图标,它不会在屏幕上显示弹出通知。 我在c#

中尝试了以下代码
 public void report()
 {
  //Here am selected the value from database and stored it in "str" ,upto 
       //this working fine
  string title = "Report Received";
  string str = value from database

  NotifyIcon nic = new NotifyIcon();
  nic.Text = str;                  
  nic.BalloonTipText = str;
  nic.BalloonTipTitle = title;
  nic.Visible = true;
  nic.ShowBalloonTip(1000, title, text, ToolTipIcon.Info);
}

如何完美地工作,我被困在这里

1 个答案:

答案 0 :(得分:1)

在调用ShowBalloonTip之前,您需要定义一个图标才能使其正常工作:

nic.Icon = new Icon(@"PATH/TO/AN/ICON.ico");

希望这有帮助