Logo FluentUI

GroupBox QML Type

A styled group box container with title label. More...

Import Statement: import FluentUI 1.0

Properties

Detailed Description

GroupBox is a QML component that extends QtQuick.Controls.GroupBox with Fluent Design theme support. It provides a titled container for grouping related controls together, with a themed border and label positioned at the top.

Usage Example

 import QtQuick
 import FluentUI

 GroupBox {
     title: "Settings"

     Column {
         anchors.fill: parent
         spacing: 8

         CheckBox { text: "Option A" }
         CheckBox { text: "Option B" }
     }
 }

See also QtQuick.Controls.GroupBox.

Property Documentation

contentItem : Item

The content item of the group box. This property is inherited from QtQuick.Controls.GroupBox.

font : font

The font used for the title label. This property is inherited from QtQuick.Controls.GroupBox.

label : Item

The label item used to display the title. This property is inherited from QtQuick.Controls.GroupBox.

title : string

The title text displayed in the group box label. This property is inherited from QtQuick.Controls.GroupBox.