TileNavPane.TileNavGroupHeader Attached Property
Gets or sets a group header associated with a specific object. This is an attached property.
Namespace: DevExpress.Xpf.Navigation
Assembly: DevExpress.Xpf.Controls.v24.1.dll
NuGet Package: DevExpress.Wpf.Controls
Declaration
Returns
Type | Description |
---|---|
Object | An Object representing a group header associated with a specific object. |
Remarks
You can display headers above tiles in the TileNavPane. This allows you to show an end-user that specific tiles belong to certain groups. Use the TileNavGroupHeader attached property to specify a group header for a navigation element displayed as a tile. This property is applicable to the TileNavCategory, TileNavItem and TileNavSubItem objects.
In the following example, a group header is specified for TileNavCategory objects.
<dxnav:TileNavPane.Categories>
<dxnav:TileNavCategory TileContent="First category" dxnav:TileNavPane.TileNavGroupHeader="First Group"/>
<dxnav:TileNavCategory TileContent="Second category"/>
<dxnav:TileNavCategory TileContent="Third category" dxnav:TileNavPane.TileNavGroupHeader="Second Group"/>
</dxnav:TileNavPane.Categories>
The following figure shows the result of this markup.