Example #1
0
 public PaintPen(PaintSolidBrush brush)
 {
     _pen = new Pen(brush.toBrush());
 }
Example #2
0
 public PaintPen(PaintSolidBrush brush, float width)
 {
     _pen = new Pen(brush.toBrush(), width);
 }
Example #3
0
 public void FillEllipse(PaintSolidBrush brush, int x, int y, int width, int height)
 {
     _graphics.FillEllipse(brush.toBrush(), x, y, width, height);
 }