mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 00:27:32 +08:00
36 lines
631 B
QML
36 lines
631 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import QtQuick.Controls
|
|
import FluentUI
|
|
import "../component"
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"CheckBox"
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
height: 68
|
|
paddings: 10
|
|
Layout.topMargin: 20
|
|
Row{
|
|
spacing: 30
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
FluCheckBox{
|
|
}
|
|
FluCheckBox{
|
|
text:"Text"
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluCheckBox{
|
|
text:"Text"
|
|
}'
|
|
}
|
|
|
|
}
|