Window.ResizeMode Property (System.Windows)

Switch View :
ScriptFree
.NET Framework Class Library
Window.ResizeMode Property

Gets or sets the resize mode.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Syntax

Visual Basic
Public Property ResizeMode As ResizeMode
	Get
	Set
C#
public ResizeMode ResizeMode { get; set; }
Visual C++
public:
property ResizeMode ResizeMode {
	ResizeMode get ();
	void set (ResizeMode value);
}
F#
member ResizeMode : ResizeMode with get, set

XAML Attribute Usage
<object ResizeMode="ResizeMode" .../>

Property Value

Type: System.Windows.ResizeMode
A ResizeMode value specifying the resize mode.
Dependency Property Information

Identifier field

ResizeModeProperty

Metadata properties set to true

AffectsMeasure

Remarks

There are four options:

  • NoResize. The user cannot resize the window. The Maximize and Minimize boxes are not shown.

  • CanMinimize. The user can only minimize the window and restore it from the taskbar. The Minimize and Maximize boxes are both shown, but only the Minimize box is enabled.

  • CanResize. The user has the full ability to resize the window, using the Minimize and Maximize boxes, and a draggable outline around the window. The Minimize and Maximize boxes are shown and enabled. (Default).

  • CanResizeWithGrip. This option has the same functionality as CanResize, but adds a "resize grip" to the lower right corner of the window.

Note Note

You cannot set or get this property when a window is hosted in a browser.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources