Reputation: 375
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
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