Problem with code:
m_notifyIcon.BalloonTipText = "The app has been minimised. Click the tray icon to show.";
m_notifyIcon.BalloonTipTitle = "The App";
m_notifyIcon.ShowBalloonTip(2000);
Error:
http://s1120.photobucket.com/user/hjkromeo/media/Error.png.html
Project:
http://www.mediafire.com/?ut96x02s379rxfk
Please help me!
Loading
VulpesPosted Nov 3, 2013, 8:00 PM
I think I'd try re-installing Expression Blend.
If it's no better, I'd have a look at this custom NotifyIcon for WPF:
http://www.codeproject.com/Articles/36468/WPF-NotifyIcon
Long NguyenPosted Nov 3, 2013, 8:58 PM
Long NguyenPosted Nov 3, 2013, 3:07 AM
http://s1120.photobucket.com/user/hjkromeo/media/ErrorNoti.png.html
VulpesPosted Nov 2, 2013, 8:42 PM
I can't find anything in the documentation to suggest that they're not supported when you include a NotifyIcon in a WPF application.
Do they show up in Intellisense when you type m_notifyIcon. ?
Long NguyenPosted Nov 1, 2013, 10:40 PM
when i add that row, appear an error:
MainWindow does not content a definition for 'component'...
Rajesh Kumar JhaPosted Nov 1, 2013, 6:03 AM
Please try adding the Following line , after you create the m_notifyIcon
m_notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
Please let me know if it helps.