Use Brush directly : SolidBrush « 2D « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.2D
25.Design Patterns
26.Windows
27.XML
28.XML LINQ
29.ADO.Net
30.Network
31.Directory Services
32.Security
33.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » 2D » SolidBrush 
24.26.4.Use Brush directly
Use Brush directly
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

public class BrushDirectly : System.Windows.Forms.Form
{
  private System.ComponentModel.Container components;

  public BrushDirectly()
  {
    InitializeComponent();
  }
  protected override void Disposebool disposing )
  {
    ifdisposing )
    {
      if (components != null
      {
        components.Dispose();
      }
    }
    base.Disposedisposing );
  }

  private void InitializeComponent()
  {
    this.AutoScaleBaseSize = new System.Drawing.Size(513);
    this.ClientSize = new System.Drawing.Size(292273);
    this.Text = "Solid Brushes...";
    this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);

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

  private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
  {
    Graphics g = e.Graphics;
        g.FillPie(Brushes.Black, 150101201509080);
  }
}
24.26.SolidBrush
24.26.1.SolidBrush with colorSolidBrush with color
24.26.2.Make a blue SolidBrushMake a blue SolidBrush
24.26.3.Brushes: FirebrickBrushes: Firebrick
24.26.4.Use Brush directlyUse Brush directly
24.26.5.A purple dashed BrushA purple dashed Brush
24.26.6.Fill a Rectangle with a blue BrushFill a Rectangle with a blue Brush
24.26.7.Draw string with Brush and RectangleDraw string with Brush and Rectangle
w__w_w.__j_a_v__a2s___.___c__o__m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.