wpf-devexpress-dot-xpf-dot-windowsui-dot-slideviewitem.md
Occurs whenever an end-user clicks the SlideViewItem‘s header.
Namespace : DevExpress.Xpf.WindowsUI
Assembly : DevExpress.Xpf.Controls.v25.2.dll
NuGet Package : DevExpress.Wpf.Controls
public event EventHandler Click
Public Event Click As EventHandler
The Click event's data class is EventArgs.
SlideViewItem headers are specified via the SlideViewItem.Header property. If you set the Navigation.NavigateTo attached property for a SlideViewItem, clicking this item’s header will navigate to the specified view. Otherwise, clicking a SlideViewItem header will have no effect. Regardless of this behavior, the Click event fires whenever the SlideViewItem header is clicked, no matter whether it has a navigation target or not.
Instead of handling the Click event for every particular SlideViewItem within a SlideView, you can handle the SlideView.ItemClick event.
See Also