protected WindowsImp GetWindowsImp() { if (windowsImp == null) { this.windowsImp = WindowsImpAbstractFactory.MakeWindowsImp(windowsImpType); } return(this.windowsImp); }
public override void DrawContents() { WindowsImp windowsImp = GetWindowsImp(); if (windowsImp != null) { windowsImp.DeviceBitmap(this.mBitMapName, new Coord(0), new Coord(0)); } }
public WindowsBase(View contents) { this.view = contents; this.windowsImp = null; this.windowsImpType = null; }