1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
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
|