Set WindowStyle to None and WindowState to maximum. This can be done as follows:
WindowState = WindowState.Maximized; WindowStyle = WindowStyle.None;
Or in xaml:
<Window x:Class="FullScreenApplication.Window" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Full Screen WPF" WindowState="Maximized" WindowStyle="None">
And just press ALT-TAB to exit full-screen wpf. It allows you to switch between other applications.
Kurt Van den Branden Jan 17 '16 at 17:29 2016-01-17 17:29
source share