mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 11:40:43 +08:00
23 lines
424 B
QML
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
|
|
}
|
|
|
|
}
|