Skip to main content

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

SlideViewItem.Click Event

Occurs whenever an end-user clicks the SlideViewItem‘s header.

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public event EventHandler Click

#Event Data

The Click event's data class is EventArgs.

#Remarks

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