I'm developing a WPF application(scheduler), that would announce the start of some events. For that, I need to show my window and make it cover all other windows in the system, which do not belong to my application. Is it possible in WPF application?
Asked
Active
Viewed 54 times
1 Answers
1
You should set some windows properties :
WindowStyle = WindowStyle.None;
WindowState = WindowState.Maximized;
In this case, you will not have borders and it will take all the screen.
If you want it to be on the top of other windows, tou can set the TopMost property = true;
Topmost = true;

Coskun Ozogul
- 2,389
- 1
- 20
- 32