10

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?

1 Answer 1

18

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
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.