Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FlowLayoutControl.AllowLayerSizing Property

Gets or sets whether columns or rows of items are allowed to be resized via built-in separators. Separators must be enabled via the FlowLayoutControl.ShowLayerSeparators property.

Namespace: DevExpress.Xpf.LayoutControl

Assembly: DevExpress.Xpf.LayoutControl.v24.2.dll

NuGet Package: DevExpress.Wpf.LayoutControl

#Declaration

public bool AllowLayerSizing { get; set; }

#Property Value

Type Description
Boolean

A Boolean value that specifies whether columns or rows of items are allowed to be resized via built-in separators.

#Remarks

To allow columns/rows of items to be resized, set the AllowLayerSizing and FlowLayoutControl.ShowLayerSeparators properties to true. If layer separators are hidden, items cannot be resized, even if the AllowLayerSizing property is enabled.

After a column/row has been resized, the FlowLayoutControl.ItemsSizeChanged event fires.

See Also