WPF: display notification window when my application is minimized

How to implement, using WPF, a notification mechanism similar to that for example Does chrome have? By this I mean: a pop-up window with custom content that displays especially when my main application window is minimized.

Things I've tried so far:

  • WPF popup class with the StaysOpen attribute set to true . Everything seems to be in order, except that it disappears when I minimize the main window.
  • Custom Template Window: Well, this is a window, so it appears as another application window on the taskbar, which I would like to avoid.
+5
source share

Source: https://habr.com/ru/post/1275364/


All Articles