Hello,

Qt Code:
  1. GroupBox {
  2. title: "Tab Position"
  3.  
  4. RowLayout {
  5. ExclusiveGroup { id: tabPositionGroup }
  6. RadioButton {
  7. text: "Top"
  8. checked: true
  9. exclusiveGroup: tabPositionGroup
  10. }
  11. RadioButton {
  12. text: "Bottom"
  13. exclusiveGroup: tabPositionGroup
  14. }
  15. }
  16. }
To copy to clipboard, switch view to plain text mode 

Just a question. Are you really a certified Qt Developer?!?!?!