Start A Figure : Path « 2D Graphics « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » 2D Graphics » PathScreenshots 
Start A Figure
 
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(10101050);
    gp.AddBezier(1050105525703070);

    gp.StartFigure();
    gp.AddLine(6011040160);

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

 
Related examples in the same category
1.Close all figures
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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.