Logo FluentUI

ControlBackground QML Type

一个自定义的背景组件,用于控制按钮或其他控件的视觉效果。. More...

Import Statement: import FluentUI.Controls 1.0

Properties

Detailed Description

ControlBackground 组件是一个自定义的 `Rectangle`,用于提供控件的背景样式。它根据控件的状态(如高亮、按下、悬停)来动态更新颜色,并支持自定义的圆角和边框样式。

示例用法:

 ControlBackground {
 target: someControl
 // 在此处添加您的内容
 }

Property Documentation

borderWidth : int

背景的边框宽度。


color : color

背景的颜色,根据目标控件的状态(如高亮、按下、悬停)来动态计算。


defaultColor : color

当控件被高亮显示时的默认边框颜色。


endColor : color

当控件被按下时的边框颜色。


radius : real

背景的圆角半径。


secondaryColor : color

当控件被高亮显示时的次要边框颜色。


target : var

要应用背景样式的目标控件。