Exemplo n.º 1
0
 public Point[] FillEllipse(Selection sel)
 {
     return drawShape(sel, (g, s) => {
     g.FillEllipse(new SolidBrush(CR_FORE), sel.GetTrimRect());
     g.DrawEllipse(new Pen       (CR_FORE), sel.GetTrimRect());
      });
 }
Exemplo n.º 2
0
 public Point[] DrawRect(Selection sel)
 {
     return drawShape(sel, (g, s) => g.DrawRectangle(new Pen(CR_FORE), sel.GetTrimRect()));
 }