GraphicsPath starts a new figure : Path « 2D Graphics « C# / C Sharp






GraphicsPath starts a new figure

GraphicsPath starts a new figure


  using System;
  using System.Drawing;
  using System.Drawing.Drawing2D;
  using System.Collections;
  using System.ComponentModel;
  using System.Windows.Forms;
  using System.Data;
  using System.Drawing.Imaging;

  public class Form1 : System.Windows.Forms.Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    private void InitializeComponent()
    {
      this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
      this.ClientSize = new System.Drawing.Size(292, 273);
      this.Text = "";
      this.Resize += new System.EventHandler(this.Form1_Resize);
      this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);

    }
    static void Main() 
    {
      Application.Run(new Form1());
    }

    private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
    {      
      Graphics g = e.Graphics;
      g.FillRectangle(Brushes.White, this.ClientRectangle);

      GraphicsPath gp = new GraphicsPath();

      // Create a figure
      gp.AddLine(10, 10, 10, 50);
      gp.AddBezier(10, 50, 130, 55, 25, 70, 30, 70);
      gp.AddLine(30, 70, 60, 70);
      gp.AddBezier(60, 70, 555, 70, 90, 55, 90, 50);
      gp.AddLine(90, 50, 90, 30);

      // Create another figure
      gp.StartFigure();
      gp.AddLine(60, 110, 40, 160);
      gp.AddLine(40, 160, 60, 180);

      g.DrawPath(Pens.Black, gp);

      gp.Dispose();
    }

    private void Form1_Resize(object sender, System.EventArgs e)
    {
      Invalidate();
    }
  }

           
       








Related examples in the same category

1.Start A Figure
2.Close all figures
3.Add a rectangle to a Path
4.Is click inside a pathIs click inside a path
5.Create Path from StringCreate Path from String
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