11-Pixel Inset Pen : Pens « 2D Graphics « C# / C Sharp






11-Pixel Inset Pen

11-Pixel Inset 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.Windows.Forms.VisualStyles;
using System.Drawing.Drawing2D;

public class Form1 : Form
{

      public Form1() {
            InitializeComponent();
            
      }
    private void SimpleStyleRenderer_Paint(object sender, PaintEventArgs e)
    {
      Rectangle rect = new Rectangle(10, 10, 110, 110);
      Pen pen = new Pen(Color.White, 11);
      Pen penOutline = new Pen(Color.Black, 1);
      penOutline.Alignment = PenAlignment.Inset;
      pen.Alignment = PenAlignment.Center;
      rect.Offset(10, -25);
      e.Graphics.DrawString("11-Pixel Inset Pen", SystemFonts.DefaultFont, Brushes.Black, rect.Location);
      rect.Offset(0, 25);
      pen.Alignment = PenAlignment.Inset;
      e.Graphics.FillRectangle(Brushes.LightBlue, rect);
      e.Graphics.DrawRectangle(pen, rect);
      e.Graphics.DrawRectangle(penOutline, rect);
      
      

      
      pen.Dispose();
    }


    private void InitializeComponent()
    {
      this.SuspendLayout();
      // 
      // SimpleStyleRenderer
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.ClientSize = new System.Drawing.Size(384, 353);
      this.Name = "SimpleStyleRenderer";
      this.Text = "SimpleStyleRenderer";
      this.Paint += new System.Windows.Forms.PaintEventHandler(this.SimpleStyleRenderer_Paint);
      this.ResumeLayout(false);

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

}



           
       








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.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