Exemplo n.º 1
0
 private void F2(Point location)
 {
     SimplePaint.MapFill m = new SimplePaint.MapFill();
     m.Fill(g, location, Color.Blue, ref bmp);
     g = Graphics.FromImage(bmp);
     pictureBox1.Image = bmp;
     pictureBox1.Refresh();
 }
Exemplo n.º 2
0
 private void FloodFill(Point p)
 {
     SimplePaint.MapFill m = new SimplePaint.MapFill();
     m.Fill(g, p, pen.Color, ref bmp);
 }
Exemplo n.º 3
0
 private void F2(Point p)
 {
     SimplePaint.MapFill m = new SimplePaint.MapFill();
     m.Fill(g, p, Color.Blue, ref bmp);
 }