Skip to main content

TileBase.NavigationTargetParameter Property

Gets or sets the parameter to be passed to the target page, invoked when tapping/clicking the Tile. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Layout

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public object NavigationTargetParameter { get; set; }

Property Value

Type Description
Object

A parameter to be passed to the page specified by the TileBase.NavigationTargetType property, which is invoked on tapping/clicking the Tile.

Remarks

You can interpret the parameter passed to a page by overriding the page’s OnNavigatedTo method.

See Also