FluentUI/src/controls/FluFocusRectangle.qml
朱子楚\zhuzi 0cf3f2aa22 update
2023-03-12 14:26:03 +08:00

23 lines
424 B
QML

import QtQuick 2.15
import FluentUI 1.0
Item {
id:root
anchors.fill: parent
anchors.margins: -3
property var radius: 4
Rectangle{
width: root.width
height: root.height
anchors.centerIn: parent
color: "#00000000"
border.width: 3
radius: root.radius
border.color: FluTheme.isDark ? Qt.rgba(1,1,1,1) : Qt.rgba(0,0,0,1)
z: 65535
}
}