LayoutGroup.SizeMode Attached Property
Allows you to set size mode for any object within the LayoutGroup. This is an attached property.
Namespace: DevExpress.UI.Xaml.Layout
Assembly: DevExpress.UI.Xaml.Layout.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
Returns
Type | Description |
---|---|
ItemSizeMode | An ItemSizeMode value that is the size mode for the specified object within the LayoutGroup. |
Remarks
The default size mode for all items within a LayoutGroup is specified by the LayoutGroupBase.HorizontalItemSizeMode and LayoutGroupBase.VerticalItemSizeMode properties. To override the default sizing behavior for individual items, you can use:
- the LayoutItem.SizeMode property for LayoutItem objects;
- the LayoutGroup.SizeMode attached property for a group’s items that are not of the LayoutItem type.
See Also