Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 1.16 KB

turn-off-overscan.md

File metadata and controls

24 lines (20 loc) · 1.16 KB
title description ms.date ms.topic keywords ms.assetid ms.localizationpriority
How to draw UI to the edge of the screen
Learn how to turn off the default borders placed at the edges of the viewport and draw your UI to the edges of the screen.
02/08/2017
article
windows 10, uwp
1adb221f-6f70-4255-9329-2046a486ca45
medium

How to draw UI to the edge of the screen

By default, applications will have borders placed at the edges of the viewport to account for the TV-safe area (for more information, see Designing for Xbox and TV).

We recommend turning this off and drawing to the edge of the screen. You can draw to the edge of the screen by adding the following code when your application starts:

Windows.UI.ViewManagement.ApplicationView.GetForCurrentView().SetDesiredBoundsMode(Windows.UI.ViewManagement.ApplicationViewBoundsMode.UseCoreWindow);

Note

C++/DirectX applications do not have to worry about this. The system will always render your application to the edge of the screen.

See also