Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I set the Windows position on startup

I want to set the position of the window on the right side on the screen similar to WPF. Is there a way in UWP to do this?

like image 207
RandomUser Avatar asked Feb 07 '17 06:02

RandomUser


People also ask

How do I get Windows 10 to remember my window position?

To save any window position, click on the Windows title bar to make sure the window is active and press the hotkey Ctrl+Alt+Z. A tooltip message will confirm that the position has been saved.

How do I set a window to always be on top?

To make the active window always on top, press Ctrl + Spacebar (or the keyboard shortcut you assigned). Press the keyboard shortcut again to disable “always on top” for the active window.


1 Answers

AFAIK it's not possible in UWP (at least not yet), you can change window size or make it fullscreen by accessing ApplicationView class, but there are no such methods/properties like in WPF.

There was also similar question on MSDN.

like image 124
Romasz Avatar answered Oct 07 '22 23:10

Romasz