TileBar.GroupHeader 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 TileBar. This allows you to show an end-user that specific tiles belong to certain groups. Use the GroupHeader attached property to specify a group header for a navigation element displayed as a tile. This property is applicable to TileBarItem objects.
In the following example, group headers are specified for two TileBarItems.
<dxnav:TileBar>
<dxnav:TileBarItem Content="TileBarItem" dxnav:TileBar.GroupHeader="First Group"/>
<dxnav:TileBarItem Content="TileBarItem"/>
<dxnav:TileBarItem Content="TileBarItem" dxnav:TileBar.GroupHeader="Second Group"/>
</dxnav:TileBar>
The following figure shows the result of this markup.
You can also use the TileBar.GroupHeaderStyle and TileBar.GroupHeaderTemplate properties for styling and templating group headers.