Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Text {
- id: status
- text: qsTr("Slow")
- font.family: "Source Sans Pro"
- color: "white"
- font.pixelSize: 26
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.top: fan.bottom
- anchors.topMargin: 50
- }
- ButtonGroup { id: radioGroup
- exclusive: true
- }
- ColumnLayout{
- id:buttons_group
- anchors.centerIn: parent
- anchors.horizontalCenterOffset: -200
- spacing: 10
- FanButton{
- id:butt1
- width:100
- height: 50
- txt:"slow"
- checkable: true
- checked: true
- ButtonGroup.group: radioGroup
- }
- FanButton{
- id:butt2
- width:100
- height: 50
- txt:"Medium"
- checkable: true
- ButtonGroup.group: radioGroup
- }
- FanButton{
- id:butt3
- width:100
- height: 50
- txt:"Fast"
- checkable: true
- ButtonGroup.group: radioGroup
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement