Exemplo n.º 1
0
 public virtual void FillFigure(Point mouse)
 {
     if (_fillColor.IsNamedColor && _fillColor != Color.Transparent)
     {
         _fill = new FullFill();
         _fill.Fill(mouse, _fillColor, _colorLine);
     }
     else
     {
         _fill = new EmptyFill();
     }
 }
Exemplo n.º 2
0
		public static void FillPath(this Graphics g, IBrush brush, GraphicsPath path) {
			brush.Fill(g, path);
		}
Exemplo n.º 3
0
 public static void FillPath(this Graphics g, IBrush brush, GraphicsPath path)
 {
     brush.Fill(g, path);
 }