How to implement, using WPF, notifications mechanism similar to what eg. Chrome has? By which I mean: custom content pop-up, displaying especially when my main application window is minimized.
Things I have tried out so far:
- WPF Popup class with
StaysOpen
property set totrue
. Seems okay, except that it disappears when I minimize the main window. - Custom template window: well, it's a window, so it appears as another application window in the taskbar, which I'd like to avoid.