mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-25 11:23:00 +02:00
107 lines
2.0 KiB
Plaintext
107 lines
2.0 KiB
Plaintext
object Form1: TForm1
|
|
Left = 315
|
|
Height = 243
|
|
Top = 183
|
|
Width = 240
|
|
Caption = 'Lazarus Dialogs Test'
|
|
ClientHeight = 243
|
|
ClientWidth = 240
|
|
LCLVersion = '0.9.31'
|
|
object buttonNativeOpen: TButton
|
|
Left = 8
|
|
Height = 25
|
|
Top = 48
|
|
Width = 226
|
|
Caption = 'Native TOpenDialog'
|
|
OnClick = buttonNativeOpenClick
|
|
TabOrder = 0
|
|
end
|
|
object buttonLazOpen: TButton
|
|
Left = 8
|
|
Height = 25
|
|
Top = 80
|
|
Width = 226
|
|
Caption = 'TLazOpenDialog'
|
|
OnClick = buttonLazOpenClick
|
|
TabOrder = 1
|
|
end
|
|
object buttonNativeSave: TButton
|
|
Left = 8
|
|
Height = 25
|
|
Top = 112
|
|
Width = 226
|
|
Caption = 'Native TSaveDialog'
|
|
OnClick = buttonNativeSaveClick
|
|
TabOrder = 2
|
|
end
|
|
object buttonLazSave: TButton
|
|
Left = 8
|
|
Height = 25
|
|
Top = 144
|
|
Width = 226
|
|
Caption = 'TLazSaveDialog'
|
|
OnClick = buttonLazSaveClick
|
|
TabOrder = 3
|
|
end
|
|
object buttonNativeSelectDir: TButton
|
|
Left = 8
|
|
Height = 25
|
|
Top = 173
|
|
Width = 226
|
|
Caption = 'Native TSelectDirectoryDialog'
|
|
OnClick = buttonNativeSelectDirClick
|
|
TabOrder = 4
|
|
end
|
|
object buttonLazSelectDir: TButton
|
|
Left = 8
|
|
Height = 25
|
|
Top = 200
|
|
Width = 226
|
|
Caption = 'TLazSelectDirectoryDialog'
|
|
OnClick = buttonLazSelectDirClick
|
|
TabOrder = 5
|
|
end
|
|
object Label1: TLabel
|
|
Left = 8
|
|
Height = 14
|
|
Top = 4
|
|
Width = 73
|
|
Caption = 'Input InitialDir:'
|
|
ParentColor = False
|
|
end
|
|
object editInputInitialDir: TEdit
|
|
Left = 96
|
|
Height = 21
|
|
Top = 4
|
|
Width = 136
|
|
TabOrder = 6
|
|
end
|
|
object Label2: TLabel
|
|
Left = 8
|
|
Height = 14
|
|
Top = 24
|
|
Width = 81
|
|
Caption = 'Output FileName'
|
|
ParentColor = False
|
|
end
|
|
object editOutputFileName: TEdit
|
|
Left = 96
|
|
Height = 21
|
|
Top = 24
|
|
Width = 136
|
|
TabOrder = 7
|
|
end
|
|
object dialogNativeOpen: TOpenDialog
|
|
left = 160
|
|
top = 184
|
|
end
|
|
object dialogNativeSave: TSaveDialog
|
|
left = 208
|
|
top = 184
|
|
end
|
|
object dialogNativeSelectDir: TSelectDirectoryDialog
|
|
left = 248
|
|
top = 184
|
|
end
|
|
end
|