| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- form formSelect
- {
- layout = LAYOUT_VERTICAL
- alignment = ALIGN_TOP_LEFT
- width = 220
- autoHeight = AUTO_SIZE_FIT
- consumeInputEvents = false
- radioButton form0
- {
- style = Button
- text = Basic Controls
- group = formSelection
- autoWidth = AUTO_SIZE_STRETCH
- height = 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
- }
- }
|