wpf-devexpress-dot-xpf-dot-windowsui-dot-slideview.md
Occurs when an end-user clicks a header of a SlideViewItem within the current SlideView.
Namespace : DevExpress.Xpf.WindowsUI
Assembly : DevExpress.Xpf.Controls.v25.2.dll
NuGet Package : DevExpress.Wpf.Controls
public event EventHandler<SlideViewItemClickEventArgs> ItemClick
Public Event ItemClick As EventHandler(Of SlideViewItemClickEventArgs)
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. |
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