form basicControls { layout = LAYOUT_ABSOLUTE size = 600, 600 batchingEnabled = false label title { position = 185, 10 text = Title Label fontSize = 32 } button testButton { position = 20, 110 text = This is a button } checkbox testCheckbox { position = 20, 220 text = This is a checkbox. } slider testSlider { position = 25, 315 width = 190 orientation = HORIZONTAL min = -100 max = 100 value = 0 //step = 5 text = This is a slider. valueTextVisible = true } label textBoxLabel { position = 25, 390 size = 200, 60 text = This is a label: } textBox testTextBox { position = 20, 430 size = 250, 80 text = This is a text box. } textBox testPasswordTextBox { position = 20, 520 width = 250 text = PASSWORD inputMode = PASSWORD } container radioButtonContainer { layout = LAYOUT_VERTICAL position = 330, 100 radioButton choice1 { text = Radio button 1. group = testRadio selected = true } radioButton choice2 : choice1 { text = Radio button 2. selected = false } radioButton choice3 : choice2 { text = Radio button 3. } } image testImage { alignment = ALIGN_BOTTOM_RIGHT path = res/png/logo.png } container testPanel { style = Panel margin { right = 75 bottom = 170 } alignment = ALIGN_BOTTOM_RIGHT label { size = 200, 100 text = Style: Panel Alignment: bottom-right Right margin: 50 Bottom margin: 100 textAlignment = ALIGN_VCENTER_HCENTER } } }