mthomas50
mthomas50

Reputation: 43

UWP Window Placement

I am creating a .net UWP application in Visual Studio 2015 RC. I successfully set the Window size by using the following code:

ApplicationView.GetForCurrentView().TryResizeView(New Size(width, height))

What I would like is to be able to set the preferred window position on the screen (e.g. centred) but cannot find a way to set this in code.

Am I missing something obvious?

Thanks,

Mark

Upvotes: 4

Views: 1474

Answers (1)

Rob Caplan - MSFT
Rob Caplan - MSFT

Reputation: 21919

You're not missing anything obvious. Apps can request a specific size but not position for their views.

Upvotes: 5

Related Questions