共用方式為


Page.WindowWidth 屬性

定義

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

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

屬性值

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

範例

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

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

備註

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

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

Page在 XAML 瀏覽器應用程式中, (XBAP) 只能用來WindowWidth變更瀏覽器的寬度;無法藉由設定WidthMinWidthMaxWidth來變更寬度。

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

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

適用於