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

ChipGroup.ChipGeneration Event

Fires before a chip is generated based on the bound view model and allows you to customize the chip.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

#Declaration

C#
public event ChipGenerationEventHandler ChipGeneration

#Event Data

The ChipGeneration event's data class is ChipGenerationEventArgs. The following properties provide information specific to this event:

Property Description
Chip Gets the processed chip. Inherited from ChipEventArgs.
Item Gets the data object based on which the processed chip is generated. Inherited from ChipEventArgs.

#Remarks

A chip’s BindingContext property contains the data object from the ItemsSource collection based on which this chip is generated. Updating the BindingContext property in a ChipGeneration event handler has no effect since the group resets this property after the event.

See Also