mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-02-12 01:30:02 +08:00
23 lines
415 B
QML
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
|
|
}
|
|
|
|
}
|