DUnitMainForm.dfm
上传用户:yjb1804
上传日期:2021-01-30
资源大小:3105k
文件大小:1k
源码类别:

Email服务器

开发平台:

Delphi

  1. inherited DUnitForm: TDUnitForm
  2.   Left = 151
  3.   Top = 71
  4.   Caption = 'DUnit'
  5.   PixelsPerInch = 96
  6.   TextHeight = 13
  7.   inherited MainMenu: TMainMenu
  8.     inherited FileMenu: TMenuItem
  9.       object LoadTests1: TMenuItem [0]
  10.         Action = LoadTestsAction
  11.       end
  12.     end
  13.     object Help1: TMenuItem
  14.       Caption = '&Help'
  15.       object AboutItem: TMenuItem
  16.         Action = AboutAction
  17.       end
  18.     end
  19.   end
  20.   object DUnitActions: TActionList
  21.     Left = 18
  22.     Top = 114
  23.     object LoadTestsAction: TAction
  24.       Category = 'File'
  25.       Caption = '&Load Tests...'
  26.       ShortCut = 16463
  27.       OnExecute = LoadTestsActionExecute
  28.     end
  29.     object UnloadTestscAction: TAction
  30.       Category = 'File'
  31.       Caption = '&Unload Tests'
  32.       ShortCut = 16469
  33.     end
  34.     object AboutAction: TAction
  35.       Category = 'Help'
  36.       Caption = '&About'
  37.       OnExecute = AboutActionExecute
  38.     end
  39.   end
  40.   object OpenTestsDialog: TOpenDialog
  41.     DefaultExt = '*.dlt'
  42.     Filter = 'DUnit Test Library (*.dtl,*.dll)|*.dtl;*.dll|All Files|*.*'
  43.     Options = [ofHideReadOnly, ofAllowMultiSelect, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  44.     Left = 82
  45.     Top = 114
  46.   end
  47. end