Draw a rectangle : Draw Rectangle « 2D « C# / CSharp Tutorial






Draw a rectangle
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

public class DrawARectangle : System.Windows.Forms.Form
{
  public DrawARectangle()
  {
    this.BackColor = System.Drawing.Color.White;
    this.ClientSize = new System.Drawing.Size(400, 400);
    this.Paint += new System.Windows.Forms.PaintEventHandler(this.DrawARectangle_Paint);
  }

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

  private void DrawARectangle_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
  {
    Graphics g = e.Graphics;
    
    Pen p = new Pen(Color.Black, 5);
    g.DrawRectangle(p, 10, 10, 200, 200);
  }
}








27.7.Draw Rectangle
27.7.1.Draw a rectangleDraw a rectangle
27.7.2.Fill a rectangle Linear Gradient BrushFill a rectangle Linear Gradient Brush
27.7.3.Fill a rectangle with different HatchBrush-Styles