Logo FluentUI

Pane QML Type

A styled pane container with Fluent Design theming. More...

Import Statement: import FluentUI 1.0

Properties

Detailed Description

Pane is a QML component that extends QtQuick.Controls.Pane with Fluent Design theme support. It provides a simple container with themed background fill and stroke, suitable for grouping related content within a page or panel.

Usage Example

 import QtQuick
 import FluentUI

 Pane {
     width: 300
     height: 200
     padding: 16

     Label {
         text: "Pane content"
         anchors.centerIn: parent
     }
 }

See also QtQuick.Controls.Pane.

Property Documentation

contentItem : Item

The content item of the pane. This property is inherited from QtQuick.Controls.Pane.

padding : real

The padding around the pane content in pixels. This property is inherited from QtQuick.Controls.Pane.