blob: cc03310d4b2d89bf786e2b4c7b0e71bfd93f6153 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
object CheckBoxForm: TCheckBoxForm
BorderWidth = 8
Text = 'Check box test'
object Box: TBoxLayout
Orientation = Vertical
object GrayCheckBox: TCheckBox
Text = 'Gray other check boxes'
OnClick = GrayCheckBoxClick
end
object CheckBox1: TCheckBox
Text = 'First other check box'
end
object CheckBox2: TCheckBox
Text = 'Second other check box'
end
end
end
|