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

WinRTLiveTileManager.Id Property

Gets or sets the ID for the current WinRTLiveTileManager.

Namespace: DevExpress.XtraBars.WinRTLiveTiles

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[DXCategory("Behavior")]
public string Id { get; set; }

Property Value

Type Description
String

A String value that is the current WinRTLiveTileManager‘s ID.

Remarks

Currently the ID for every WinRTLiveTileManager is generated automatically and cannot be manually changed.

The Id is used to get which Live Tile an end-user has clicked. This can be useful if your application consists of multiple modules, each containing a WinRTLiveTileManager control, so multiple Live Tiles can be pinned to the Windows 8 Start Screen. Call the static WinRTLiveTileManager.InitializeNavigation method and handle the WinRTLiveTileManager.OnNavigated event to get the ID of the WinRTLiveTileManager associated with a clicked Live Tile. Refer to the WinRTLiveTileManager topic to learn more.

See Also