Search code examples
c#wpfxamlfullscreen

Full screen in WPF application


I am developing a WPF application which will be displayed in Full screen. In addition, the application should work on many tablets of multiple dimensions. I'd like my application to run in full screen independently from its dimensions.

What is the best practice to accomplish this task?


Solution

  • Just set the WindowState to Maximized, and the WindowStyle to None.