ApplicationView.IsFullScreenMode Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the app is running in full-screen mode.
public:
property bool IsFullScreenMode { bool get(); };
bool IsFullScreenMode();
public bool IsFullScreenMode { get; }
var boolean = applicationView.isFullScreenMode;
Public ReadOnly Property IsFullScreenMode As Boolean
Property Value
bool
true if the app is running in full-screen mode; otherwise, false. The default is false.
Remarks
The IsFullScreenMode property is set as a result of calls to the TryEnterFullScreenMode and ExitFullScreenMode methods. It can also be set to true when the app starts if the PreferredLaunchWindowingMode property is set to FullScreen.
The system raises the CoreWindow.SizeChanged event when the value of this property changes. This is exposed to XAML apps as the Window.SizeChanged event and to HTML apps as the window.resize event.
User experience
Full-screen mode is not the same as maximized or Tablet mode (Windows 10 only). When an app is in full-screen mode, it takes up the entirety of the screen. System elements, like title bars, status bars, or the taskbar, are hidden by default. In cases where a windowed mode is not available and apps always fill the entire screen, such as on phones or devices in Tablet mode (Windows 10 only), full-screen mode still causes the system elements to be hidden.
When the user switches away from the app to use another app, the full-screen nature of the app is preserved. When the user switches to the app again, it is full-screen.
In full-screen mode:
- On the mobile device family, the user can swipe from the bottom to bring up the navigation bar (Back, Start, Cortana). They can also swipe from the top to bring up Action Center.
- On the desktop device family, the user can swipe from the bottom to bring up the navigation bar (taskbar). They can swipe from the left to bring up Task View, from the right to bring up Action Center, and from the top to bring up the title bar.
You can suppress edge swipes and show a small UI instead by setting FullScreenSystemOverlayMode to Minimal.
To play media full-screen, don't use full-screen mode. Set the MediaPlayer.IsFullWindow property instead.