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