SizeToContent Enum
Definition
Specifies how a window will automatically size itself to fit the size of its content. Used by the SizeToContent property.
public enum class SizeToContent
[System.Windows.Localizability(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)]
public enum SizeToContent
type SizeToContent =
Public Enum SizeToContent
- Inheritance
- Attributes
Fields
Height | 2 | Specifies that a window will automatically set its height to fit the height of its content, but not the width. |
Manual | 0 | 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 | 1 | Specifies that a window will automatically set its width to fit the width of its content, but not the height. |
WidthAndHeight | 3 | Specifies that a window will automatically set both its width and height to fit the width and height of its content. |