Is it possible to run a WPF application in exclusive mode - where it owns the entire screen? I want to do full screen video playback.
+2
A:
If you set the WindowStyle
to None
and maximize then you will take over the full screen - including task bar. But then you have to implement your own window chrome.
HTH, Kent
Kent Boogaart
2009-01-13 12:07:22
That's not really the same thing though. Sure that displays my app in the full screen, but it's not the same as exclusive mode where the application owns the screen and nothing else can draw. I'm talking aobut how video games do it, where they may even display at a different resolution.
GeekyMonkey
2009-01-13 12:14:14
For that, I believe you need to use DirectX directly.
Kent Boogaart
2009-01-16 12:56:01