mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-07-02 08:05:29 +08:00
update
This commit is contained in:
@ -11,27 +11,35 @@ FluScrollablePage{
|
||||
|
||||
FluArea{
|
||||
Layout.fillWidth: true
|
||||
height: 68
|
||||
height: 72
|
||||
paddings: 10
|
||||
Layout.topMargin: 20
|
||||
|
||||
FluText{
|
||||
text:"A 2-state CheckBox"
|
||||
}
|
||||
|
||||
Row{
|
||||
spacing: 30
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
FluCheckBox{
|
||||
disabled: check_box_switch.checked
|
||||
anchors{
|
||||
top: parent.top
|
||||
topMargin: 30
|
||||
}
|
||||
FluCheckBox{
|
||||
disabled: check_box_switch.checked
|
||||
disabled: check_box_switch_two.checked
|
||||
}
|
||||
FluCheckBox{
|
||||
disabled: check_box_switch_two.checked
|
||||
text:"Right"
|
||||
}
|
||||
FluCheckBox{
|
||||
disabled: check_box_switch.checked
|
||||
disabled: check_box_switch_two.checked
|
||||
text:"Left"
|
||||
textRight: false
|
||||
}
|
||||
}
|
||||
FluToggleSwitch{
|
||||
id:check_box_switch
|
||||
id:check_box_switch_two
|
||||
anchors{
|
||||
right: parent.right
|
||||
verticalCenter: parent.verticalCenter
|
||||
@ -47,4 +55,60 @@ FluScrollablePage{
|
||||
}'
|
||||
}
|
||||
|
||||
FluArea{
|
||||
Layout.fillWidth: true
|
||||
height: 72
|
||||
paddings: 10
|
||||
Layout.topMargin: 20
|
||||
|
||||
FluText{
|
||||
text:"A 3-state CheckBox"
|
||||
}
|
||||
|
||||
Row{
|
||||
spacing: 30
|
||||
anchors{
|
||||
top: parent.top
|
||||
topMargin: 30
|
||||
}
|
||||
FluCheckBox{
|
||||
property int count: 1
|
||||
text:"Three State"
|
||||
disabled: check_box_switch_three.checked
|
||||
clickListener: function(){
|
||||
var flag = count%3
|
||||
if(flag === 0){
|
||||
checked = false
|
||||
indeterminate = false
|
||||
}
|
||||
if(flag === 1){
|
||||
checked = true
|
||||
indeterminate = false
|
||||
}
|
||||
if(flag === 2){
|
||||
checked = true
|
||||
indeterminate = true
|
||||
}
|
||||
count++
|
||||
}
|
||||
}
|
||||
}
|
||||
FluToggleSwitch{
|
||||
id:check_box_switch_three
|
||||
anchors{
|
||||
right: parent.right
|
||||
verticalCenter: parent.verticalCenter
|
||||
}
|
||||
text:"Disabled"
|
||||
}
|
||||
}
|
||||
CodeExpander{
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: -1
|
||||
code:'FluCheckBox{
|
||||
text:"Text"
|
||||
indeterminate:true
|
||||
}'
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -12,27 +12,35 @@ FluScrollablePage{
|
||||
|
||||
FluArea{
|
||||
Layout.fillWidth: true
|
||||
height: 68
|
||||
height: 72
|
||||
paddings: 10
|
||||
Layout.topMargin: 20
|
||||
|
||||
FluText{
|
||||
text:"A 2-state CheckBox"
|
||||
}
|
||||
|
||||
Row{
|
||||
spacing: 30
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
FluCheckBox{
|
||||
disabled: check_box_switch.checked
|
||||
anchors{
|
||||
top: parent.top
|
||||
topMargin: 30
|
||||
}
|
||||
FluCheckBox{
|
||||
disabled: check_box_switch.checked
|
||||
disabled: check_box_switch_two.checked
|
||||
}
|
||||
FluCheckBox{
|
||||
disabled: check_box_switch_two.checked
|
||||
text:"Right"
|
||||
}
|
||||
FluCheckBox{
|
||||
disabled: check_box_switch.checked
|
||||
disabled: check_box_switch_two.checked
|
||||
text:"Left"
|
||||
textRight: false
|
||||
}
|
||||
}
|
||||
FluToggleSwitch{
|
||||
id:check_box_switch
|
||||
id:check_box_switch_two
|
||||
anchors{
|
||||
right: parent.right
|
||||
verticalCenter: parent.verticalCenter
|
||||
@ -48,4 +56,60 @@ FluScrollablePage{
|
||||
}'
|
||||
}
|
||||
|
||||
FluArea{
|
||||
Layout.fillWidth: true
|
||||
height: 72
|
||||
paddings: 10
|
||||
Layout.topMargin: 20
|
||||
|
||||
FluText{
|
||||
text:"A 3-state CheckBox"
|
||||
}
|
||||
|
||||
Row{
|
||||
spacing: 30
|
||||
anchors{
|
||||
top: parent.top
|
||||
topMargin: 30
|
||||
}
|
||||
FluCheckBox{
|
||||
property int count: 1
|
||||
text:"Three State"
|
||||
disabled: check_box_switch_three.checked
|
||||
clickListener: function(){
|
||||
var flag = count%3
|
||||
if(flag === 0){
|
||||
checked = false
|
||||
indeterminate = false
|
||||
}
|
||||
if(flag === 1){
|
||||
checked = true
|
||||
indeterminate = false
|
||||
}
|
||||
if(flag === 2){
|
||||
checked = true
|
||||
indeterminate = true
|
||||
}
|
||||
count++
|
||||
}
|
||||
}
|
||||
}
|
||||
FluToggleSwitch{
|
||||
id:check_box_switch_three
|
||||
anchors{
|
||||
right: parent.right
|
||||
verticalCenter: parent.verticalCenter
|
||||
}
|
||||
text:"Disabled"
|
||||
}
|
||||
}
|
||||
CodeExpander{
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: -1
|
||||
code:'FluCheckBox{
|
||||
text:"Text"
|
||||
indeterminate:true
|
||||
}'
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user