new Pen(clr, f) : 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 
new Pen(clr, f)
 

using System;
using System.Drawing;
using System.Windows.Forms;
   
class PenWidths: Form
{
     public static void Main()
     {
          Application.Run(new PenWidths());
     }
     public PenWidths()
     {
          Text = "Pen Widths";
          ResizeRedraw = true
     }
     protected override void OnPaint(PaintEventArgs pea)
     {
          DoPage(pea.Graphics, ForeColor,ClientSize.Width, ClientSize.Height);
     }     
     protected void DoPage(Graphics grfx, Color clr, int cx, int cy)
     {
          Brush brush = new SolidBrush(clr);
          float y     = 0;
   
          grfx.PageUnit  = GraphicsUnit.Point;
          grfx.PageScale = 1;
   
          for (float f = 0; f < 3.2; f += 0.2f)
          {
               Pen    pen   = new Pen(clr, f);
               string str   = String.Format("{0:F1} point wide pen: ", f);
               SizeF  sizef = grfx.MeasureString(str, Font);
   
               grfx.DrawString(str, Font, brush, 0, y);
               grfx.DrawLine(pen, sizef.Width,       y + sizef.Height / 2,
                                  sizef.Width + 144, y + sizef.Height / 2);
               y += sizef.Height;
          }
     }
}

 
Related examples in the same category
1.new Pen(lgbrush, Math.Min(cx, cy) / 25), Gradient Pen
2.new Pen(ForeColor)
3.DashDot style Pen
4.Pen Dash Caps: Flat, Round, Triangle
5.11-Pixel Centered Pen11-Pixel Centered Pen
6.11-Pixel Inset Pen11-Pixel Inset Pen
7.make red and blue pensmake red and blue pens
8.Pen alignment: centerPen alignment: center
9.Pen alignment: insetPen alignment: inset
10.Pen width and colorPen width and color
11.Pen Dash StylesPen Dash Styles
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.