Custom Pen : 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 
Custom Pen
Custom Pen
 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;

public class MainForm : Form {
    public MainForm() {
    }

    protected void OnPaint(PaintEventArgs e) {
        Graphics g = e.Graphics;
        Pen bluePen = new Pen(Color.Blue, 20);
        Pen pen2 = Pens.Firebrick;

        g.DrawEllipse(bluePen, 1010100100);
        g.DrawLine(pen2, 10130110130);
        g.DrawPie(Pens.Black, 150101201509080);

        Pen pen3 = new Pen(Color.Purple, 5);
        pen3.DashStyle = DashStyle.DashDotDot;
        g.DrawPolygon(pen3, new Point[]{     new Point(30140),
          new Point(265200)new Point(100225),
          new Point(190190)new Point(50330),
          new Point(20180)});

        Rectangle r = new Rectangle(1501013060);
        g.DrawRectangle(Pens.Blue, r);
        g.DrawString("Hello out there...How are ya?",new Font("Arial"12), Brushes.Black, r);

        Pen customDashPen = new Pen(Color.BlueViolet, 10);
        float[] myDashes = 5.0f2.0f1.0f3.0f };
        customDashPen.DashPattern = myDashes;
        g.DrawRectangle(customDashPen, ClientRectangle);
    }
    public static void Main(){
        Application.Run(new MainForm());    
    }
}

 
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.illustrates the use of multiple Pensillustrates the use of multiple Pens
14.Dispose a pen
15.StartCap, EndCap
16.creates the custom dash pattern 5
17.Set DashStyle
18.creates the custom dash pattern
19.Set LineJoin for 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.