public DynamicDrawing(Form1 f)
     : base(f)
 {
     _zoom = new Zoom(this);
     //_pictureBox = f.pictureBox; _pen = f._pen; _brush = f._brush; _checkBoxFill = f.checkBoxFill; _checkBoxFramed = f.checkBoxFramed;
 }
 public DynamicDrawing(DynamicDrawing dd)
     : base(dd._form1)
 {
     _zoom = new Zoom(dd._zoom, this);
     _left = dd._left; _up = dd._up; _width = dd._width; _height = dd._height; _buf = new Bitmap(dd._buf);
 }
Exemple #3
0
 public Zoom(Zoom z , DynamicDrawing dd)
 {
     _zoomPoints = new List<Point>(z._zoomPoints);
     _target = dd;
 }