Logo FluentUI

FilledButton QML Type

一个标准的填充按钮组件。. More...

Import Statement: import FluentUI.Controls 1.0

Properties

Signals

Detailed Description

FilledButton 组件是一个标准按钮,带有填充背景和高亮状态。该组件适用于需要突显的主要操作,提供了简单易用的交互方式。

示例用法:

 FilledButton {
     text: "Click Me"
     onClicked: {
         // 在此处添加点击处理逻辑
     }
 }

Property Documentation

highlighted : bool

如果为 true,按钮将处于高亮状态,通常表示该按钮是当前操作的重点。


Signal Documentation

onClicked()

在用户点击按钮时发出此信号。

Note: The corresponding handler is onOnClicked.