共用方式為


Page.WindowHeight 屬性

定義

取得或設定 Window 之裝載 NavigationWindowPage 的高度。

public:
 property double WindowHeight { double get(); void set(double value); };
public double WindowHeight { get; set; }
member this.WindowHeight : double with get, set
Public Property WindowHeight As Double

屬性值

直接裝載 Page 之視窗的高度。

範例

下列範例示範如何從頁面設定視窗的高度。

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

備註

WindowHeight 只有在直接由視窗裝載 時 Page ,才會套用 ,包括:

Page如果 由Frame裝載 ,則設定WindowHeight沒有作用,但您仍然可以取得的值WindowHeight

Page XAML 瀏覽器應用程式中的 (XBAP) 只能用來WindowHeight變更瀏覽器的高度;設定、 MinHeightMaxHeight無法變更Height高度。

如需 XBAP 支援的詳細資訊,請參閱 WPF 瀏覽器裝載應用程式的常見問題, (XBAP)

Windows Internet Explorer 視窗的最小高度為 150 像素。 對於瀏覽器裝載的頁面,這表示 如果會導致 Internet Explorer 視窗的總高度小於 150 像素,則可能不會套用 的值 WindowHeight

適用於