I am creating my personal gmail checker in C# and I need a way to popup a notification in system tray whenever there is a new email and how to control the contents of that notification bar. Also if possible I don’t need it to be like windows notifications but my personal way. For example not popup like a notification but like a rectangle (or square or whatever) and if windows taskbar is in autohide the taskbar not be shown but only the notification. Also it is a wpf app. If you need more info let me know
Share
Sounds like you’re looking at trying to create a "toaster"-style popup. You can take a look at including something like this WPF NotifyIcon:
You could also look at using a notification framework like Growl for Windows:
You can find the documentation and Growl.net files on Growl’s developer page.