Pen Dash Styles : 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 
Pen Dash Styles
Pen Dash Styles

/*
User Interfaces in C#: Windows Forms and Custom Controls
by Matthew MacDonald

Publisher: Apress
ISBN: 1590590457
*/

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

namespace GDI_Basics
{
    /// <summary>
    /// Summary description for PenDashStyles.
    /// </summary>
    public class PenDashStyles : System.Windows.Forms.Form
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.Container components = null;

        public PenDashStyles()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        protected override void Disposebool disposing )
        {
            ifdisposing )
            {
                if(components != null)
                {
                    components.Dispose();
                }
            }
            base.Disposedisposing );
        }

        #region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            // 
            // PenDashStyles
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(513);
            this.ClientSize = new System.Drawing.Size(500398);
            this.Name = "PenDashStyles";
            this.Text = "PenDashStyles";
            this.Resize += new System.EventHandler(this.PenDashStyles_Resize);
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.PenDashStyles_Paint);

        }
        #endregion

        [STAThread]
        static void Main() 
        {
            Application.Run(new PenDashStyles());
        }

        private void PenDashStyles_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
        {
            Pen myPen = new Pen(Color.Blue, 10);
            int y = 20;
            foreach (DashStyle dash in System.Enum.GetValues(typeof(DashStyle)))
            {
                myPen.DashStyle = dash;
                e.Graphics.DrawLine(myPen, 20, y, 100, y);
                e.Graphics.DrawString(dash.ToString()new Font("Tahoma"8), Brushes.Black, 120, y - 10);
                y += 30;
            }
            
            y += 10;
            myPen.StartCap = LineCap.Round;
            myPen.EndCap = LineCap.Round;
            
            foreach (DashStyle dash in System.Enum.GetValues(typeof(DashStyle)))
            {
                myPen.DashStyle = dash;
                e.Graphics.DrawLine(myPen, 20, y, 100, y);
                e.Graphics.DrawString(dash.ToString() " (with round caps)"new Font("Tahoma"8), Brushes.Black, 120, y - 10);
                y += 30;
            }
        }

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


           
       
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.illustrates the use of multiple Pensillustrates the use of multiple Pens
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.