illustrates the use of multiple Pens : Pens « 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 » PensScreenshots 
illustrates the use of multiple Pens
illustrates the use of multiple Pens

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example21_2.cs illustrates the use of multiple Pens
*/

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

public class Example21_2 : System.Windows.Forms.Form
{
  private System.ComponentModel.Container components = null;

  public Example21_2()
  {
    InitializeComponent();
  }

  protected override void Disposebool disposing )
  {
    ifdisposing )
    {
      if (components != null
      {
        components.Dispose();
      }
    }
    base.Disposedisposing );
  }

  private void InitializeComponent()
  {
    this.BackColor = System.Drawing.Color.White;
    this.ClientSize = new System.Drawing.Size(400400);
    this.Name = "Example21_2";
    this.Text = "Example21_2";
    this.Paint += new System.Windows.Forms.
      PaintEventHandler(this.Example21_2_Paint);
  }


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

  private void Example21_2_Paint(
    object sender, System.Windows.Forms.PaintEventArgs e)
  {
    Graphics g = e.Graphics;
    // draw two lines with one pen
    Pen p = new Pen(Color.Black, 10);
    g.DrawLine(p, 2525375375);
    g.DrawLine(p, 2537537525);
    // draw four lines with another pen
    Pen p2 = new Pen(Color.Gray, 7);
    p2.EndCap = LineCap.Round;
    p2.StartCap = LineCap.ArrowAnchor;
    g.DrawLine(p2, 253525365);
    g.DrawLine(p2, 35375365375);
    g.DrawLine(p2, 37536537535);
    g.DrawLine(p2, 365253525);
  }
}



           
       
Related examples in the same category
1.new Pen(lgbrush, Math.Min(cx, cy) / 25), Gradient Pen
2.new Pen(clr, f)
3.new Pen(ForeColor)
4.DashDot style Pen
5.Pen Dash Caps: Flat, Round, Triangle
6.11-Pixel Centered Pen11-Pixel Centered Pen
7.11-Pixel Inset Pen11-Pixel Inset Pen
8.make red and blue pensmake red and blue pens
9.Pen alignment: centerPen alignment: center
10.Pen alignment: insetPen alignment: inset
11.Pen width and colorPen width and color
12.Pen Dash StylesPen Dash Styles
13.Dispose a pen
14.StartCap, EndCap
15.creates the custom dash pattern 5
16.Set DashStyle
17.creates the custom dash pattern
18.Set LineJoin for Pen
19.Custom PenCustom Pen
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.