2023-06-13 14:42:55 +08:00
|
|
|
import QtQuick
|
2023-06-13 15:25:26 +08:00
|
|
|
import QtQuick.Layouts
|
|
|
|
import QtQuick.Window
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Controls.Basic
|
|
|
|
import FluentUI
|
2023-06-13 14:42:55 +08:00
|
|
|
Window {
|
|
|
|
width: 640
|
|
|
|
height: 480
|
|
|
|
visible: true
|
|
|
|
title: qsTr("Hello World")
|
2023-06-13 15:25:26 +08:00
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 68
|
|
|
|
Layout.topMargin: 20
|
|
|
|
paddings: 10
|
|
|
|
|
|
|
|
FluFilledButton{
|
|
|
|
disabled:filled_button_switch.checked
|
|
|
|
text:"Filled Button"
|
|
|
|
onClicked: {}
|
|
|
|
anchors{
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: parent.left
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-13 14:42:55 +08:00
|
|
|
}
|