Add closed figures to GraphicsPath : Path « 2D Graphics « C# / C Sharp






Add closed figures to GraphicsPath

Add closed figures to GraphicsPath


  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.AddRectangle(new Rectangle(10, 50, 80, 20));

      // Create another figure
      gp.AddEllipse(50, 10, 20, 80);
      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 starts a new figureGraphicsPath starts a new figure
7.GraphicsPath closes a figure and starts a new figureGraphicsPath closes a figure and starts a new figure
8.GraphicsPath starts two figures and close themGraphicsPath starts two figures and close them
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