Skip to main content
Bar

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

Gallery.ItemUnchecked Event

Fires when a gallery item is unchecked. This event is in effect when the item checking/unchecking feature is enabled.

Namespace: DevExpress.Xpf.Bars

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

NuGet Package: DevExpress.Wpf.Core

#Declaration

public event GalleryItemEventHandler ItemUnchecked

#Event Data

The ItemUnchecked event's data class is DevExpress.Xpf.Bars.GalleryItemEventArgs.

#Remarks

To enable item checking/unchecking, see Gallery.ItemCheckMode.

When an item is checked, the GalleryItem.Checked and Gallery.ItemChecked events fire. Unchecking the item fires the GalleryItem.Unchecked and Gallery.ItemUnchecked events. To respond to checking and unchecking an item using a single event, use GalleryItem.Click or Gallery.ItemClick.

See Also