| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- object FormFileList: TFormFileList
- Left = 279
- Top = 136
- AutoScroll = False
- Caption = 'Shell Drop Handler Demo'
- ClientHeight = 453
- ClientWidth = 470
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- Menu = MainMenu1
- OldCreateOrder = False
- Position = poDefaultPosOnly
- OnCloseQuery = FormCloseQuery
- OnCreate = FormCreate
- PixelsPerInch = 96
- TextHeight = 13
- object Panel1: TPanel
- Left = 0
- Top = 412
- Width = 470
- Height = 41
- Align = alBottom
- BevelOuter = bvNone
- Caption = ' '
- TabOrder = 0
- object Memo1: TMemo
- Left = 0
- Top = 0
- Width = 470
- Height = 41
- Align = alClient
- BorderStyle = bsNone
- Color = clBtnFace
- Enabled = False
- ReadOnly = True
- TabOrder = 0
- WantReturns = False
- end
- end
- object MemoFileList: TMemo
- Left = 0
- Top = 0
- Width = 470
- Height = 412
- Align = alClient
- TabOrder = 1
- WordWrap = False
- OnChange = MemoFileListChange
- end
- object MainMenu1: TMainMenu
- Left = 24
- Top = 16
- object MenuFile: TMenuItem
- Caption = '&File'
- object MenuFileNew: TMenuItem
- Caption = '&New list'
- OnClick = MenuFileNewClick
- end
- object MenuFileOpen: TMenuItem
- Caption = '&Open'
- ShortCut = 114
- OnClick = MenuFileOpenClick
- end
- object MenuFileSave: TMenuItem
- Caption = '&Save'
- ShortCut = 113
- OnClick = MenuFileSaveClick
- end
- object MenuFileSaveAs: TMenuItem
- Caption = 'S&ave as...'
- ShortCut = 8305
- OnClick = MenuFileSaveAsClick
- end
- object N1: TMenuItem
- Caption = '-'
- end
- object MenuFileExit: TMenuItem
- Caption = 'E&xit'
- ShortCut = 32883
- OnClick = MenuFileExitClick
- end
- end
- object MenuSetup: TMenuItem
- Caption = '&Setup'
- object MenuSetupRegister: TMenuItem
- Caption = '&Register'
- OnClick = MenuSetupRegisterClick
- end
- object MenuSetupUnregister: TMenuItem
- Caption = 'Unregister'
- OnClick = MenuSetupUnregisterClick
- end
- end
- end
- object OpenDialog1: TOpenDialog
- DefaultExt = 'foobar'
- Filter = 'Foobar files (*.foobar)|*.foobar|All files (*.*)|*.*'
- Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
- Left = 60
- Top = 16
- end
- object SaveDialog1: TSaveDialog
- Filter = 'Foobar files (*.foobar)|*.foobar|All files (*.*)|*.*'
- Options = [ofHideReadOnly, ofPathMustExist, ofEnableSizing]
- Left = 96
- Top = 16
- end
- end
|