Skip to main content

DXGridView.ItemNavigationTargetType Property

Allows you to specify the name of the Page class to be opened when an end-user clicks a DXGridView 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 DXGridView 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 DXGridView.ItemNavigationTargetTypeBinding property.

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

See Also