⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainview.pas

📁 Delphi利用MVC开发的典型例子
💻 PAS
字号:
unit MainView;

// This code was generated by the EasyMVC OTA Wizard
// www.eazisoft.com

interface
uses
  Windows, Messages, SysUtils, Classes, Graphics,
  Controls, StdCtrls, ComCtrls, ExtCtrls, Forms, patterns, Menus;

type
  TViewMain = class(TFORM, IObserver)
    MainMenu1: TMainMenu;
    File1: TMenuItem;
    mnuExit: TMenuItem;
    Help1: TMenuItem;
    mnuAbout: TMenuItem;
    mnuHelp: TMenuItem;
    procedure mnuExitClick(Sender: TObject);
  private
    { Private declarations }
    procedure UpdateView(o: TObject); //from IObserver
  public
    { Public declarations }
    procedure setNotifyEventHandler(ANotifyEvent: TNotifyEvent);
  end;


implementation

{$R *.dfm}

procedure TViewMain.UpdateView(o: TObject);
begin
  {write your code here}
end;

procedure TViewMain.mnuExitClick(Sender: TObject);
begin
  close;
  //it's no neccessary to ask the Controller determine everything
end;

procedure TViewMain.setNotifyEventHandler(ANotifyEvent: TNotifyEvent);
begin
  if assigned(ANotifyEvent) then
  begin
    mnuHelp.OnClick := ANotifyEvent;
    mnuAbout.OnClick := ANotifyEvent;
  end;
end;

end.

 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -