full screen wpf
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? Just set the WindowState to Maximized , and the WindowStyle to None . Set the WindowStyle to None, and the WindowState to Maximized. This can be done like this: WindowState = WindowState.Maximized; WindowStyle = WindowStyle.None; Or in xaml: <Window x:Class="FullScreenApplication.Window" xmlns="http://schemas