Exemple #1
0
 public Win32Canvas(IntPtr hdc, Point offset, Gdi32ObjectCache objectCache)
 {
     this.hdc         = hdc;
     this.offset      = offset;
     this.objectCache = objectCache;
 }
Exemple #2
0
 public Win32Canvas CreateCanvas(Point offset, Gdi32ObjectCache objectCache)
 {
     return(new Win32Canvas(bitmapHdc, offset, objectCache));
 }