Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. import Qt 4.7
  2.  
  3. Rectangle {
  4. width: 200
  5. height: 200
  6.  
  7. Column {
  8. id: thecol
  9. anchors.fill: parent
  10. // property int selected: 3
  11. property variant selected: tuks
  12.  
  13. RButton { id: foo; group: thecol; color: "green"}
  14. RButton { id: tuks; group: thecol}
  15. RButton { id: bar; group: thecol}
  16. RButton { id: spam; group: thecol; color: "blue"}
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement