How to make a WPF window be on top of all other windows of my app (not system wide)?

后端 未结 19 2993
南笙
南笙 2020-12-14 05:42

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 al

19条回答
  •  情歌与酒
    2020-12-14 05:50

    I too faced the same problem and followed Google to this question. Recently I found the following worked for me.

    CustomWindow cw = new CustomWindow();
    cw.Owner = this;
    cw.ShowDialog();
    

提交回复
热议问题