Close all figures : Path « 2D Graphics « C# / C Sharp






Close all figures

 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Text;
using System.Windows.Forms;

public class Form1 : Form {

    protected override void OnPaint(PaintEventArgs e) {
    Graphics g = e.Graphics;
    g.FillRectangle(Brushes.White, this.ClientRectangle);
    GraphicsPath gp = new GraphicsPath();
    gp.AddLine(10, 10, 10, 50);
    gp.AddBezier(10, 50, 10, 55, 25, 70, 30, 70);
    gp.AddLine(30, 70, 60, 70);
    gp.StartFigure();
    gp.AddLine(60, 110, 40, 160);

    gp.CloseAllFigures();

    g.DrawPath(Pens.Black, gp);
    gp.Dispose();
    }
    public static void Main() {
        Application.Run(new Form1());
    }
}

 








Related examples in the same category

1.Start A Figure
2.Add a rectangle to a Path
3.Is click inside a pathIs click inside a path
4.Create Path from StringCreate Path from String
5.GraphicsPath starts a new figureGraphicsPath starts a new figure
6.GraphicsPath closes a figure and starts a new figureGraphicsPath closes a figure and starts a new figure
7.GraphicsPath starts two figures and close themGraphicsPath starts two figures and close them
8.Add closed figures to GraphicsPathAdd closed figures to GraphicsPath
9.Fill path and draw pathFill path and draw path
10.Add lines to PathAdd lines to Path
11.Add Ellipse to path
12.Widen a Path
13.Scribble with Path
14.Add Bezier to a Path
15.Add Line and Arc to Path
16.Graphics Path ExampleGraphics Path Example
17.Draw pathDraw path
18.Fillpath DemoFillpath Demo