1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# Gambas Form File 3.0
{ Form Form
MoveScaled(25,11.1429,92,54)
Text = ("TreeView Example")
Icon = Picture["treeview.png"]
Resizable = False
{ Help Menu
Text = ("Help")
{ About Menu
Text = ("About")
}
}
{ TreeView1 TreeView
MoveScaled(1,1,24,48)
Mode = Select.Multiple
Editable = True
}
{ Button1 Button
MoveScaled(54,1,17,4)
Text = ("Insert Name")
}
{ Button2 Button
MoveScaled(54,6,17,4)
Text = ("Remove Name")
}
{ TextBox1 TextBox
MoveScaled(27,1,25,4)
}
{ Frame1 Frame
MoveScaled(27,11,64,13)
Text = ("Current item")
{ TextLabel1 TextLabel
MoveScaled(1,4,38,8)
}
}
{ Label2 Label
MoveScaled(27,25,39,4)
Font = Font["Bold"]
Text = ("Events")
}
{ TextArea1 TextArea
MoveScaled(27,29,64,15)
ReadOnly = True
}
{ Button3 Button
MoveScaled(71,45,20,4)
Text = ("&Clear events")
}
{ RadioButton1 RadioButton
MoveScaled(27,6,12,4)
Text = ("Male")
Value = True
}
{ RadioButton2 RadioButton
MoveScaled(40,6,13,4)
Text = ("Female")
}
}
|