Skip to main content

DXListView.ItemClickCommand Property

Gets or sets the command to be invoked on an item click.

Namespace: DevExpress.UI.Xaml.Layout

Assembly: DevExpress.UI.Xaml.Layout.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public ICommand ItemClickCommand { get; set; }

Property Value

Type Description
ICommand

A ICommand object that specifies the command to be invoked on an item click.

Remarks

When an end-user clicks an item, the DXListView.ItemClickCommand is invoked. Then, the control navigates to the page specified by the DXListView.ItemNavigationTargetType or DXListView.ItemNavigationTargetTypeBinding property.

See Also