formSelect.form 689 B

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