Files
FluentUI/src/Qt6/imports/FluentUI/Controls/FluShadow.qml
朱子楚\zhuzi cf163f5e3b update
2024-04-04 16:53:31 +08:00

25 lines
638 B
QML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import QtQuick
import QtQuick.Controls
import FluentUI
Item {
//高性能阴影比DropShadow阴影性能高出数倍
property color color: FluTheme.dark ? "#AAAAAA" : "#999999"
property int elevation: 5
property int radius: 4
id:control
anchors.fill: parent
Repeater{
model: elevation
Rectangle{
anchors.fill: parent
color: "#00000000"
opacity: 0.01 * (elevation-index+1)
anchors.margins: -index
radius: control.radius+index
border.width: index
border.color: control.color
}
}
}