본문 바로가기

프로그래밍 언어 노트/C#

[UWP] Fullscreen

using Windows.UI.ViewManagement;

public App()
{
    this.InitializeComponent();				//기본코드
    this.Suspending += OnSuspending;		//기본코드
    ApplicationView.PreferredLaunchWindowingMode = ApplicationViewWindowingMode.FullScreen;	//FullScreen 코드
}

UWP 프로그램에서 기본으로 풀스크린을 사용할라면

App.cs 에서 (Main 아님, XAML 아님)

풀스크린 설정을 하면 된다.

 

728x90