public RenderDialog() { this.InitializeComponent(); this.KeyDown += this.FrmKeyDown; this.KeyUp += this.FrmKeyUp; this.virtualMachine = new VirtualMachine(new VideoRender(this.pbRender)); this.presenter = new RenderPresenter(this, this.virtualMachine); }
public RenderPresenter(IRenderDialog view, VirtualMachine virtualMachine) { this.view = view; this.virtualMachine = virtualMachine; this.SetGraphics(Graphics.Small()); }
public DebuggerDialog(VirtualMachine vm) { this.InitializeComponent(); this.vm = vm; this.InitializeMemory(); }