| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- form formSelect
- {
- layout = LAYOUT_VERTICAL
- alignment = ALIGN_TOP_LEFT
- width = 200
- autoHeight = true
- consumeInputEvents = false
- radioButton form0
- {
- style = Button
- text = Basic Controls
- group = formSelection
- size = 180, 60
- textAlignment = ALIGN_VCENTER_LEFT
- selected = true
- }
- radioButton form1 : form0
- {
- text = Scrolling
- selected = false
- }
- radioButton form2 : form1
- {
- text = Flow Layout
- }
- radioButton form3 : form1
- {
- text = Vertical Layout
- }
- radioButton form4 : form1
- {
- text = Z-Order
- }
- radioButton form5 : form1
- {
- text = Programmatic
- }
- }
|