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.ItemsSizeChanged Event

Fires after a layer (column or row) of items has been resized.

Namespace: DevExpress.Xpf.LayoutControl

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

NuGet Package: DevExpress.Wpf.LayoutControl

#Declaration

public event ValueChangedEventHandler<Size> ItemsSizeChanged

#Event Data

The ItemsSizeChanged event's data class is ValueChangedEventArgs<Size>. The following properties provide information specific to this event:

Property Description
NewValue Gets an object that represents the new value of a specific property.
OldValue Gets an object that represents the old value of a specific property.

#Remarks

Resizing a layer (column or row) of items changes the value of the FlowLayoutControl.LayerWidth property. The ItemsSizeChanged event fires after this property has been changed.

Item re-sizing is enabled if the FlowLayoutControl.AllowLayerSizing and FlowLayoutControl.ShowLayerSeparators properties are enabled.

See Also