mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 16:41:30 +08:00
51 lines
1.1 KiB
QML
51 lines
1.1 KiB
QML
|
import QtQuick
|
||
|
import QtQuick.Layouts
|
||
|
import QtQuick.Window
|
||
|
import QtQuick.Controls
|
||
|
import FluentUI
|
||
|
import "qrc:///example/qml/component"
|
||
|
|
||
|
FluScrollablePage{
|
||
|
|
||
|
title:"CheckBox"
|
||
|
|
||
|
FluArea{
|
||
|
Layout.fillWidth: true
|
||
|
height: 68
|
||
|
paddings: 10
|
||
|
Layout.topMargin: 20
|
||
|
Row{
|
||
|
spacing: 30
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
FluCheckBox{
|
||
|
disabled: check_box_switch.checked
|
||
|
}
|
||
|
FluCheckBox{
|
||
|
disabled: check_box_switch.checked
|
||
|
text:"Right"
|
||
|
}
|
||
|
FluCheckBox{
|
||
|
disabled: check_box_switch.checked
|
||
|
text:"Left"
|
||
|
textRight: false
|
||
|
}
|
||
|
}
|
||
|
FluToggleSwitch{
|
||
|
id:check_box_switch
|
||
|
anchors{
|
||
|
right: parent.right
|
||
|
verticalCenter: parent.verticalCenter
|
||
|
}
|
||
|
text:"Disabled"
|
||
|
}
|
||
|
}
|
||
|
CodeExpander{
|
||
|
Layout.fillWidth: true
|
||
|
Layout.topMargin: -1
|
||
|
code:'FluCheckBox{
|
||
|
text:"Text"
|
||
|
}'
|
||
|
}
|
||
|
|
||
|
}
|