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