Back to Devexpress

Gallery.ItemChecked Event

wpf-devexpress-dot-xpf-dot-bars-dot-gallery-49c8c229.md

latest3.0 KB
Original Source

Gallery.ItemChecked Event

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

Namespace : DevExpress.Xpf.Bars

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public event GalleryItemEventHandler ItemChecked
vb
Public Event ItemChecked As GalleryItemEventHandler

Event Data

The ItemChecked 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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ItemChecked event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-create-a-ribboncontrol/CS/RibbonControl_Ex/MainWindow.xaml#L216

xml
IsItemDescriptionVisible="False"
ItemChecked="FontFamilyGallery_ItemChecked"
ItemCaptionVerticalAlignment="Center">

See Also

ItemCheckMode

Click

IsChecked

Unchecked

ItemChecked

ItemClick

ItemUnchecked

GetCheckedItems()

GetFirstCheckedItem()

CheckedItems

Gallery Class

Gallery Members

DevExpress.Xpf.Bars Namespace