Skip to main content
A newer version of this page is available. .

SlideViewItem.Click Event

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

Namespace: DevExpress.Xpf.WindowsUI

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Controls, DevExpress.Wpf.Navigation

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