How to make a window so that when you call window.Show() , it would be absolutely the topmost one and would not take control of itself during the appearance.
Now it happens like this:
- At the moment
window.Show()window sometimes (not always) fails under other client applications and you have to return it with Alt + Tab At the moment
window.Show()this window takes control over. Those. if I’m holdingWin another client application, then thisWseems to be squeezed out, although I did not pressResizeMode="NoResize" WindowStyle="None" AllowsTransparency="True" WindowState="Maximized" Topmost="True"
The purpose of the window, without interfering, to show notifications.
ShowActivated="False"is enough here - Vipz