Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SizeToContent Enumeration

 

Specifies how a window will automatically size itself to fit the size of its content. Used by the Window.SizeToContent property.

Namespace:   System.Windows
Assembly:  PresentationCore (in PresentationCore.dll)

[LocalizabilityAttribute(LocalizationCategory.None, Readability = Readability.Unreadable)]
public enum SizeToContent

Member nameDescription
Height

Specifies that a window will automatically set its height to fit the height of its content, but not the width.

Manual

Specifies that a window will not automatically set its size to fit the size of its content. Instead, the size of a window is determined by other properties, including Width, Height, MaxWidth, MaxHeight, MinWidth, and MinHeight. See WPF Windows Overview.

Width

Specifies that a window will automatically set its width to fit the width of its content, but not the height.

WidthAndHeight

Specifies that a window will automatically set both its width and height to fit the width and height of its content.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft