Skip to main content

TileBase.NotificationHeader Property

Gets or sets the notification header displayed in 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 NotificationHeader { get; set; }

Property Value

Type Description
Object

An Object that specifies the notification header displayed in the Tile.

Remarks

Using the NotificationHeader property you can provide a notification header to be displayed in the Tile. The figure below shows Tiles that display notification headers.

TileBase_NotificationHeaders

By default, the notification header is aligned at the bottom right of the Tile. You can use the TileBase.VerticalNotificationHeaderAlignment and TileBase.HorizontalNotificationHeaderAlignment properties to customize the notification header alignment.

By default, if the NotificationHeader property is specified, the notification header is automatically displayed in the Tile. You can use the TileBase.ShowNotificationHeader property to explicitly specify whether to display the notification header.

The TileBase.NotificationHeaderTemplate, TileBase.NotificationHeaderTemplateSelector and TileBase.NotificationHeaderStyle properties provide the notification header templating and styling functionality.

You can also specify a format string used to used to render the notification header (see TileBase.NotificationHeaderStringFormat).

See Also