MdWizard.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:2k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit MdWizard;
  2. interface
  3. uses
  4.   ExptIntf, Windows;
  5. type
  6.   TMdExpert = class (TIExpert)
  7.   public
  8.     function GetStyle: TExpertStyle; override;
  9.     function GetName: string; override;
  10.     function GetAuthor: string; override;
  11.     function GetComment: string; override;
  12.     function GetPage: string; override;
  13.     function GetGlyph: HICON; override;
  14.     function GetState: TExpertState; override;
  15.     function GetIDString: string; override;
  16.     function GetMenuText: string; override;
  17.     procedure Execute; override;
  18.   end;
  19. procedure Register;
  20. implementation
  21. uses
  22.   Dialogs, ToolIntf, SysUtils;
  23. function TMdExpert.GetStyle: TExpertStyle;
  24. begin
  25.   // show up in the Help menu
  26.   Result := esStandard;
  27. end;
  28. function TMdExpert.GetName: String;
  29. begin
  30.   // official name
  31.   Result := 'MDWizard'
  32. end;
  33. function TMdExpert.GetAuthor: string;
  34. begin
  35.   Result := 'Marco Cant