2023-03-29 18:10:34 +08:00
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
import QtQuick.Window 2.15
|
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
import FluentUI 1.0
|
|
|
|
|
|
|
|
|
|
FluScrollablePage{
|
|
|
|
|
|
|
|
|
|
title:"CheckBox"
|
|
|
|
|
leftPadding:10
|
|
|
|
|
rightPadding:10
|
|
|
|
|
bottomPadding:20
|
|
|
|
|
|
|
|
|
|
FluCheckBox{
|
|
|
|
|
Layout.topMargin: 20
|
|
|
|
|
}
|
2023-03-29 21:43:01 +08:00
|
|
|
|
|
|
|
|
|
FluCheckBox{
|
|
|
|
|
Layout.topMargin: 20
|
|
|
|
|
text:"Text"
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-29 18:10:34 +08:00
|
|
|
|
}
|