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
|
object Form1: TForm1
Left = 422
Height = 240
Top = 281
Width = 320
Caption = 'Form1'
ClientHeight = 218
ClientWidth = 320
Menu = MainMenu1
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '0.9.31'
object PCFiles: TPageControl
Left = 0
Height = 218
Top = 0
Width = 320
Align = alClient
TabOrder = 0
end
object MainMenu1: TMainMenu
left = 57
top = 37
object MFile: TMenuItem
Caption = '&File'
object MINew: TMenuItem
Caption = '&New'
ShortCut = 16462
OnClick = MINewClick
end
object MIOpen: TMenuItem
Caption = '&Open'
ShortCut = 16463
OnClick = MIOpenClick
end
object MISave: TMenuItem
Caption = '&Save'
ShortCut = 16467
OnClick = MISaveClick
end
object MISaveAs: TMenuItem
Caption = 'Save as'
end
object MIRecent: TMenuItem
Caption = 'Recent'
end
object MenuItem2: TMenuItem
Caption = '-'
end
object MIQuit: TMenuItem
Caption = '&Quit'
ShortCut = 16465
OnClick = MIQuitClick
end
end
end
object MRUMenuManager1: TMRUMenuManager
MaxRecent = 5
MenuItem = MIRecent
OnRecentFile = MRUMenuManager1RecentFile
left = 176
top = 40
end
object ODFile: TOpenDialog
DefaultExt = '.txt'
Filter = 'Text files|*.txt|All files|*.*'
Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
left = 40
top = 109
end
object SDFile: TSaveDialog
DefaultExt = '.txt'
Filter = 'Text files|*.txt|All files|*.*'
Options = [ofPathMustExist, ofEnableSizing, ofViewDetail]
left = 121
top = 115
end
end
|