formSelect.form 644 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. form formSelect
  2. {
  3. layout = LAYOUT_VERTICAL
  4. alignment = ALIGN_TOP_LEFT
  5. width = 200
  6. autoHeight = true
  7. consumeInputEvents = false
  8. radioButton form0
  9. {
  10. style = Button
  11. text = Basic Controls
  12. group = formSelection
  13. size = 180, 60
  14. textAlignment = ALIGN_VCENTER_LEFT
  15. selected = true
  16. }
  17. radioButton form1 : form0
  18. {
  19. text = Scrolling
  20. selected = false
  21. }
  22. radioButton form2 : form1
  23. {
  24. text = Flow Layout
  25. }
  26. radioButton form3 : form1
  27. {
  28. text = Vertical Layout
  29. }
  30. radioButton form4 : form1
  31. {
  32. text = Z-Order
  33. }
  34. radioButton form5 : form1
  35. {
  36. text = Programmatic
  37. }
  38. }