Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.2.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.

TileNavPane_GroupHeaders

See Also