rafallopatka / ToastNotifications

Toast notifications for WPF allows you to create and display rich notifications in WPF applications. It's highly configurable with set of built-in options like positions, behaviours, themes and many others. It's extendable, it gives you possibility to create custom and interactive notifications in simply manner.
GNU Lesser General Public License v3.0
718 stars 171 forks source link

Urgent Help Requested : Parent window is getting activated and coming in to focus #93

Closed cvanama closed 5 years ago

cvanama commented 5 years ago

Hi Friends,

When ever i the toaster is displayed on the window, that window is activating and coming into focus, even i am not on that window.

My WPF app can open multiple windows for different purpose, on certain action or event will trigger to display a toaster notification on the window X. I am working something on Window Y. But when the toaster shows my window X is coming into Focus which is disturbing my work on Y.

My requirement is toaster notification should come and go on its way and should not activate the parent window if i am not in focus at that time.

Please help me as quick as possible.

rafallopatka commented 5 years ago

Try configuring notifier like this

new Notifier(cfg => { /***/ cfg.DisplayOptions.TopMost = false; });