I\'ve WPF application which has one Main window on which I\'m opening a Popup window. The problem I\'m facing is the Popup window always stays on top. If I open some other a
Check the Window.Topmost property whitch is indicates that window should be always on top.
Window.Topmost
PopupWindow wnd = new PopupWindow(); wnd.ShowDialog();