FoobarMain.dfm 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. object FormFileList: TFormFileList
  2. Left = 279
  3. Top = 136
  4. AutoScroll = False
  5. Caption = 'Shell Drop Handler Demo'
  6. ClientHeight = 453
  7. ClientWidth = 470
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. Menu = MainMenu1
  15. OldCreateOrder = False
  16. Position = poDefaultPosOnly
  17. OnCloseQuery = FormCloseQuery
  18. OnCreate = FormCreate
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object Panel1: TPanel
  22. Left = 0
  23. Top = 412
  24. Width = 470
  25. Height = 41
  26. Align = alBottom
  27. BevelOuter = bvNone
  28. Caption = ' '
  29. TabOrder = 0
  30. object Memo1: TMemo
  31. Left = 0
  32. Top = 0
  33. Width = 470
  34. Height = 41
  35. Align = alClient
  36. BorderStyle = bsNone
  37. Color = clBtnFace
  38. Enabled = False
  39. ReadOnly = True
  40. TabOrder = 0
  41. WantReturns = False
  42. end
  43. end
  44. object MemoFileList: TMemo
  45. Left = 0
  46. Top = 0
  47. Width = 470
  48. Height = 412
  49. Align = alClient
  50. TabOrder = 1
  51. WordWrap = False
  52. OnChange = MemoFileListChange
  53. end
  54. object MainMenu1: TMainMenu
  55. Left = 24
  56. Top = 16
  57. object MenuFile: TMenuItem
  58. Caption = '&File'
  59. object MenuFileNew: TMenuItem
  60. Caption = '&New list'
  61. OnClick = MenuFileNewClick
  62. end
  63. object MenuFileOpen: TMenuItem
  64. Caption = '&Open'
  65. ShortCut = 114
  66. OnClick = MenuFileOpenClick
  67. end
  68. object MenuFileSave: TMenuItem
  69. Caption = '&Save'
  70. ShortCut = 113
  71. OnClick = MenuFileSaveClick
  72. end
  73. object MenuFileSaveAs: TMenuItem
  74. Caption = 'S&ave as...'
  75. ShortCut = 8305
  76. OnClick = MenuFileSaveAsClick
  77. end
  78. object N1: TMenuItem
  79. Caption = '-'
  80. end
  81. object MenuFileExit: TMenuItem
  82. Caption = 'E&xit'
  83. ShortCut = 32883
  84. OnClick = MenuFileExitClick
  85. end
  86. end
  87. object MenuSetup: TMenuItem
  88. Caption = '&Setup'
  89. object MenuSetupRegister: TMenuItem
  90. Caption = '&Register'
  91. OnClick = MenuSetupRegisterClick
  92. end
  93. object MenuSetupUnregister: TMenuItem
  94. Caption = 'Unregister'
  95. OnClick = MenuSetupUnregisterClick
  96. end
  97. end
  98. end
  99. object OpenDialog1: TOpenDialog
  100. DefaultExt = 'foobar'
  101. Filter = 'Foobar files (*.foobar)|*.foobar|All files (*.*)|*.*'
  102. Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  103. Left = 60
  104. Top = 16
  105. end
  106. object SaveDialog1: TSaveDialog
  107. Filter = 'Foobar files (*.foobar)|*.foobar|All files (*.*)|*.*'
  108. Options = [ofHideReadOnly, ofPathMustExist, ofEnableSizing]
  109. Left = 96
  110. Top = 16
  111. end
  112. end