MdWizard.pas
资源名称:delphi.rar [点击查看]
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:2k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit MdWizard;
- interface
- uses
- ExptIntf, Windows;
- type
- TMdExpert = class (TIExpert)
- public
- function GetStyle: TExpertStyle; override;
- function GetName: string; override;
- function GetAuthor: string; override;
- function GetComment: string; override;
- function GetPage: string; override;
- function GetGlyph: HICON; override;
- function GetState: TExpertState; override;
- function GetIDString: string; override;
- function GetMenuText: string; override;
- procedure Execute; override;
- end;
- procedure Register;
- implementation
- uses
- Dialogs, ToolIntf, SysUtils;
- function TMdExpert.GetStyle: TExpertStyle;
- begin
- // show up in the Help menu
- Result := esStandard;
- end;
- function TMdExpert.GetName: String;
- begin
- // official name
- Result := 'MDWizard'
- end;
- function TMdExpert.GetAuthor: string;
- begin
- Result := 'Marco Cant