Page.WindowWidth Property

Definition

Gets or sets the width of the host Window or NavigationWindow of a Page.

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

Property Value

The width of a window that directly hosts a Page.

Examples

The following example shows how to set the width of a window from a 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>

Remarks

WindowWidth is only applied when a Page is hosted directly by a window, which includes:

If a Page is hosted by a Frame, setting WindowWidth has no effect, but you can still get the value of WindowWidth.

A Page in an XAML browser application (XBAP) can only use WindowWidth to change the width of Windows Internet Explorer; the width cannot be changed by setting Width, MinWidth, or MaxWidth.

The minimum width of the Windows Internet Explorer window is 250 pixels. For browser-hosted pages, this means that the value of WindowWidth may not be applied if it would cause the total width of the Windows Internet Explorer window to be less than 250 pixels.

Applies to