Skip to main content

SlideView.ItemClick Event

Occurs when an end-user clicks a header of a SlideViewItem within the current SlideView.

Namespace: DevExpress.Xpf.WindowsUI

Assembly: DevExpress.Xpf.Controls.v23.2.dll

NuGet Package: DevExpress.Wpf.Controls

Declaration

public event EventHandler<SlideViewItemClickEventArgs> ItemClick

Event Data

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

Property Description
Item The item within a SlideView associated with the current event.

Remarks

SlideViewItem objects that are designed to display content within a SlideView have clickable headers, set via the Header property. If you specify the Navigation.NavigateTo attached property for a SlideViewItem, clicking this item’s header will redirect you to the specified view. Otherwise, clicking a SlideViewItem header will do nothing. Whether the current SlideViewItem has a navigation target or not, the ItemClick event occurs.

Individual SlideViewItems raise the SlideViewItem.Click event upon the header click.

See Also