mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
24 lines
423 B
QML
24 lines
423 B
QML
import QtQuick 2.15
|
|
import FluentUI 1.0
|
|
|
|
Item {
|
|
|
|
property int radius: 4
|
|
|
|
id:root
|
|
anchors.fill: parent
|
|
anchors.margins: -3
|
|
|
|
Rectangle{
|
|
width: root.width
|
|
height: root.height
|
|
anchors.centerIn: parent
|
|
color: "#00000000"
|
|
border.width: 3
|
|
radius: root.radius
|
|
border.color: FluTheme.dark ? Qt.rgba(1,1,1,1) : Qt.rgba(0,0,0,1)
|
|
z: 65535
|
|
}
|
|
|
|
}
|