SolidBrush with color : SolidBrush « 2D « C# / CSharp Tutorial






SolidBrush with color
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

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

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

  private void SolidBrushWithColor_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
  {
    Graphics g = e.Graphics;

    Brush brSolid = new SolidBrush(Color.Blue);
    g.FillPie(brSolid, 0, 0, 300, 300, 285, 75);
  }
}








27.26.SolidBrush
27.26.1.SolidBrush with colorSolidBrush with color
27.26.2.Make a blue SolidBrushMake a blue SolidBrush
27.26.3.Brushes: FirebrickBrushes: Firebrick
27.26.4.Use Brush directlyUse Brush directly
27.26.5.A purple dashed BrushA purple dashed Brush
27.26.6.Fill a Rectangle with a blue BrushFill a Rectangle with a blue Brush
27.26.7.Draw string with Brush and RectangleDraw string with Brush and Rectangle