Files
lazarus-ccr/components/jvcllaz/examples/JvCheckBox/jvcheckboxdemounit.lfm
2018-09-28 11:09:45 +00:00

129 lines
2.3 KiB
Plaintext

object Form1: TForm1
Left = 345
Height = 243
Top = 131
Width = 482
Caption = 'Form1'
ClientHeight = 243
ClientWidth = 482
LCLVersion = '2.1.0.0'
object JvCheckBox1: TJvCheckBox
Left = 24
Height = 19
Top = 16
Width = 318
Caption = 'Check/uncheck to enable/disable the controls in the box'
Checked = True
State = cbChecked
TabOrder = 0
LinkedControls = <
item
Control = Button1
end
item
Control = Edit1
end
item
Control = Label1
end
item
Control = Memo1
end
item
Control = ListBox1
end
item
Control = ComboBox1
end>
end
object Button2: TButton
Left = 376
Height = 25
Top = 16
Width = 75
Caption = 'Toggle'
OnClick = Button2Click
TabOrder = 1
end
object Panel1: TPanel
Left = 24
Height = 162
Top = 56
Width = 296
BevelInner = bvRaised
BevelOuter = bvLowered
Caption = 'Panel1'
ClientHeight = 162
ClientWidth = 296
TabOrder = 2
object Button1: TButton
Left = 208
Height = 25
Top = 128
Width = 75
Caption = 'Button1'
TabOrder = 0
end
object Label1: TLabel
AnchorSideTop.Control = Edit1
AnchorSideTop.Side = asrCenter
Left = 8
Height = 15
Top = 12
Width = 34
Caption = 'Label1'
ParentColor = False
end
object Edit1: TEdit
Left = 56
Height = 23
Top = 8
Width = 112
TabOrder = 1
Text = 'Edit1'
end
object Memo1: TMemo
Left = 56
Height = 82
Top = 40
Width = 114
Lines.Strings = (
'Memo1'
)
TabOrder = 2
end
object ListBox1: TListBox
Left = 184
Height = 114
Top = 8
Width = 100
Items.Strings = (
'Item 1'
'Item 2'
'Item 3'
'Item 4'
'Item 5'
)
ItemHeight = 15
TabOrder = 3
end
object ComboBox1: TComboBox
Left = 56
Height = 23
Top = 130
Width = 112
ItemHeight = 15
ItemIndex = 0
Items.Strings = (
'Item 1'
'Item 2'
'Item 3'
'Item 4'
'Item 5'
)
TabOrder = 4
Text = 'Item 1'
end
end
end