PaneItemHeader QML Type
A navigation section header label. More...
| Import Statement: | import FluentUI.Controls 1.0 |
Properties
Detailed Description
PaneItemHeader provides a non-interactive header label used to group related navigation items within a NavigationView sidebar. It visually separates sections with descriptive text and can be hidden when necessary.
Usage Example
import QtQuick import FluentUI.Controls NavigationView { items: [ PaneItemHeader { title: "Main" }, PaneItem { title: "Home"; key: "home" }, PaneItemHeader { title: "Support" }, PaneItem { title: "Help"; key: "help" } ] }
Property Documentation
title : string
The section header text displayed in the navigation sidebar.
visible : bool
Whether the header is visible. Defaults to true.