Skip to main content

DXListView.ItemNavigationTargetType Property

Allows you to specify the name of the Page class to be opened when an end-user clicks a DXListView item.

Namespace: DevExpress.UI.Xaml.Layout

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public string ItemNavigationTargetType { get; set; }

Property Value

Type Description
String

The name of the Page class to be opened when an end-user clicks a DXListView item.

Remarks

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

The ItemNavigationTargetType property specifies the name of the Page class to be opened when an end-user clicks a DXListView item. You can also specify the target Page class using a data binding via the DXListView.ItemNavigationTargetTypeBinding property.

See Also