FluentUI/src/controls/FluFocusRectangle.qml
朱子楚\zhuzi d2d2e97d28 update
2023-03-24 20:44:38 +08:00

23 lines
415 B
QML

import QtQuick
import FluentUI
Item {
id:root
anchors.fill: parent
anchors.margins: -3
property int 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
}
}