MattyAB
MattyAB

Reputation: 375

Get window size

I'm writing a Windows Universal app, and need a way to get the window's height. I have found the Window.Bound, but the Bound variable is non-static. Therefore, I would need to know the default Window object that is created, that is, if it exists and is public.

If I cannot access this, what is another way that I can get the window's height?

Upvotes: 10

Views: 17907

Answers (1)

Marian Dolinský
Marian Dolinský

Reputation: 3492

You can access the corresponding Window using Window.Current and there you can get the size. You can also try accessing the rootFrame and getting the size from it:

((Frame)Window.Current.Content).ActualHeight

and

((Frame)Window.Current.Content).ActualWidth

Upvotes: 18

Related Questions