How to make a WPF window be on top of all other windows of my app (not system wide)?
问题 I want my window to be on top of all other windows in my application only . If I set the TopMost property of a window, it becomes on top of all windows of all applications and I don't want that. 回答1: You need to set the owner property of the window. You can show a window via showdialog in order to block your main window, or you can show it normal and have it ontop of the owner without blocking the owner. here is a codeexample of the codebehind part - I left out all obvious stuff: namespace