Aracılığıyla paylaş


Nasıl Yapılır: Sayfadan Pencerenin Yüksekliğini Ayarlama

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

Örnek

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.

NotNot

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

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