mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-11 09:28:07 +02:00
105 lines
1.9 KiB
Plaintext
105 lines
1.9 KiB
Plaintext
object form1: Tform1
|
|
Left = 161
|
|
Height = 257
|
|
Top = 137
|
|
Width = 220
|
|
Caption = 'form1'
|
|
ClientHeight = 257
|
|
ClientWidth = 220
|
|
OnClick = FormClick
|
|
OnCreate = FormCreate
|
|
OnKeyDown = btnProgressKeyDown
|
|
OnMouseMove = FormMouseMove
|
|
OnPaint = FormPaint
|
|
LCLVersion = '1.1'
|
|
object btnProgress: TButton
|
|
Left = 96
|
|
Height = 25
|
|
Top = 8
|
|
Width = 116
|
|
Caption = 'Move Progress'
|
|
OnClick = btnProgressClick
|
|
OnKeyDown = btnProgressKeyDown
|
|
OnKeyPress = btnProgressKeyPress
|
|
OnKeyUp = btnProgressKeyUp
|
|
OnUTF8KeyPress = btnProgressUTF8KeyPress
|
|
TabOrder = 0
|
|
end
|
|
object ProgressBar1: TProgressBar
|
|
Left = 72
|
|
Height = 20
|
|
Top = 72
|
|
Width = 140
|
|
Position = 60
|
|
TabOrder = 1
|
|
end
|
|
object TrackBar1: TTrackBar
|
|
Left = 72
|
|
Height = 31
|
|
Top = 96
|
|
Width = 140
|
|
Position = 0
|
|
TabOrder = 2
|
|
end
|
|
object CheckBox1: TCheckBox
|
|
Left = 72
|
|
Height = 26
|
|
Top = 40
|
|
Width = 91
|
|
Caption = 'CheckBox1'
|
|
TabOrder = 3
|
|
end
|
|
object btnMsgBox: TButton
|
|
Left = 96
|
|
Height = 25
|
|
Top = 160
|
|
Width = 116
|
|
Caption = 'MessageBox'
|
|
OnClick = btnMsgBoxClick
|
|
TabOrder = 4
|
|
end
|
|
object btnOpenForm: TButton
|
|
Left = 95
|
|
Height = 25
|
|
Top = 192
|
|
Width = 117
|
|
Caption = 'Open Form2'
|
|
OnClick = btnOpenFormClick
|
|
TabOrder = 5
|
|
end
|
|
object Label1: TLabel
|
|
Left = 24
|
|
Height = 15
|
|
Top = 226
|
|
Width = 36
|
|
Caption = 'Label1'
|
|
Font.Color = clBlue
|
|
ParentColor = False
|
|
ParentFont = False
|
|
end
|
|
object btnShowInfo: TButton
|
|
Left = 96
|
|
Height = 25
|
|
Top = 226
|
|
Width = 116
|
|
Caption = 'Show Info in ADB'
|
|
OnClick = btnShowInfoClick
|
|
TabOrder = 6
|
|
end
|
|
object ComboBox1: TComboBox
|
|
Left = 72
|
|
Height = 23
|
|
Top = 128
|
|
Width = 140
|
|
AutoSize = False
|
|
ItemHeight = 0
|
|
Items.Strings = (
|
|
'Item1'
|
|
'Item2'
|
|
'Item3'
|
|
)
|
|
TabOrder = 7
|
|
Text = 'ComboBox1'
|
|
end
|
|
end
|