Logo FluentUI

AppBar QML Type

应用程序窗口的标题栏组件,包含窗口控制按钮和自定义操作区域。. More...

Import Statement: import FluentUI.Controls 1.0

Properties

Methods

Detailed Description

AppBar 组件用于创建应用程序窗口的标题栏。它支持窗口图标、标题的显示,以及最小化、最大化/还原和关闭按钮的功能。还可以通过自定义 `action` 属性添加额外的操作按钮或控件。

示例用法:

 AppBar {
     windowTitle: qsTr("My Application")
     windowIcon: MyCustomIconComponent
     action: MyCustomActionComponent
     showClose: true
     showMinimize: true
     showMaximize: true
 }

Property Documentation

action : Component

在标题栏中自定义操作区域的组件。可以在此区域添加自定义按钮或其他控件。


showClose : bool

是否显示关闭按钮。默认为 `true`。


showMaximize : bool

是否显示最大化/还原按钮。默认为 `true`。


showMinimize : bool

是否显示最小化按钮。默认为 `true`。


windowIcon : Component

窗口图标的组件。可以自定义窗口的图标显示。


windowTitle : string

窗口标题栏中显示的文本。


Method Documentation

Item buttonClose()

返回关闭按钮的引用,用于自定义或操作关闭按钮的行为。


Item buttonMaximized()

返回最大化/还原按钮的引用,用于自定义或操作该按钮的行为。


Item buttonMinimized()

返回最小化按钮的引用,用于自定义或操作最小化按钮的行为。