Class Container
public static class Container
- Inheritance
-
Container
- Inherited Members
Fields
NameProperty
Defines the Name attached property.
public static readonly AttachedProperty<string?> NameProperty
Field Value
SizingProperty
Defines the Sizing attached property.
public static readonly AttachedProperty<ContainerSizing> SizingProperty
Field Value
Methods
GetName(Layoutable)
Gets the value of the Container.Name attached property.
public static string? GetName(Layoutable layoutable)
Parameters
layoutable
LayoutableThe layoutable to read the value from.
Returns
- string
The container name of the layoutable
GetSizing(Layoutable)
Gets the value of the Container.Sizing attached property.
public static ContainerSizing GetSizing(Layoutable layoutable)
Parameters
layoutable
LayoutableThe layoutable to read the value from.
Returns
- ContainerSizing
The container sizing mode of the layoutable
SetName(Layoutable, string?)
Sets the value of the Container.Name attached property.
public static void SetName(Layoutable layoutable, string? name)
Parameters
layoutable
LayoutableThe layoutable to set the value on.
name
stringThe container name.
SetSizing(Layoutable, ContainerSizing)
Sets the value of the Container.Name attached property.
public static void SetSizing(Layoutable layoutable, ContainerSizing sizing)
Parameters
layoutable
LayoutableThe layoutable to set the value on.
sizing
ContainerSizingThe container sizing mode.