This topic has not yet been rated - Rate this topic

How to: Set the Height of a Window from a Page

This example illustrates how to set the height of the window from a Page.

A Page can set the height of its host window by setting WindowHeight. This property allows the Page to not have explicit knowledge of the type of window that hosts it.

NoteNote

To set the height of a window using WindowHeight, a Page must be the child of a window.


<Page
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="SetWindowHeightPage"
    WindowHeight="500"
    >
</Page>


Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.