Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows 10 universal app - Run in fullscreen mode by default

I have application with target windows 8.1 and when I run this application on Windows 10, it is run in small window by default.

Because it is primary tablet application I need it to run in full-screen mode by default. Is it possible to set it somewhere in Visual Studio or in some config of the application?

like image 810
Jozef Cechovsky Avatar asked Aug 01 '15 05:08

Jozef Cechovsky


1 Answers

try this:

this.InitializeComponent();
ApplicationView.GetForCurrentView().TryResizeView(new Size(1360, 768));
like image 144
user13672156 Avatar answered Jan 02 '23 19:01

user13672156