mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-16 01:20:38 +01:00
41 lines
866 B
Plaintext
41 lines
866 B
Plaintext
object MainForm: TMainForm
|
|
Left = 292
|
|
Height = 300
|
|
Top = 209
|
|
Width = 400
|
|
HorzScrollBar.Page = 399
|
|
VertScrollBar.Page = 299
|
|
ActiveControl = CreateNewFormButton
|
|
Caption = 'MainForm'
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
OnPaint = FormPaint
|
|
PopupMenu = MainPopupMenu
|
|
object CreateNewFormButton: TButton
|
|
Left = 30
|
|
Height = 26
|
|
Top = 15
|
|
Width = 116
|
|
AutoSize = True
|
|
BorderSpacing.InnerBorder = 4
|
|
Caption = 'Create a new form'
|
|
OnClick = CreateNewFormButtonClick
|
|
TabOrder = 0
|
|
end
|
|
object SaveLayoutButton: TButton
|
|
Left = 30
|
|
Height = 26
|
|
Top = 60
|
|
Width = 158
|
|
AutoSize = True
|
|
BorderSpacing.InnerBorder = 4
|
|
Caption = 'Save Layout to config.xml'
|
|
OnClick = SaveLayoutButtonClick
|
|
TabOrder = 1
|
|
end
|
|
object MainPopupMenu: TPopupMenu
|
|
left = 142
|
|
top = 141
|
|
end
|
|
end
|