Click here to Skip to main content
15,867,749 members
Articles / Programming Languages / C#
Article

Use Reflection To Generate Complete Color Chart

Rate me:
Please Sign up or sign in to vote.
4.20/5 (2 votes)
15 Apr 20022 min read 81.8K   818   20   4
Artcile on use of reflection to get color values to draw the complete color chart

Sample Image - Reflection.jpg

Introduction

In GDI+, for drawing any item we need to pick up a color for either creating a brush or a pen. .NET framework has provided System.Drawing.Color structure which contains 141 colors. That makes life pretty easy. But there are some developers like me who have hard time corelating the color names with what actually they look like.

To solve this probelm, we decided to come up with a chart that will display all the colors along with the names used in Color structure. The crude approach could have been that we use a huge switch statement with each case representing the colors defined in the structure.

But there is a very nice approach that we took. .NET framework procides a very powerful feature called Reflection. All the colors in System.Drawing.Color structure are declared as

public 
static
properties. So the idea is pretty simple.

  • Get Type of System.Drawing.Color strcuture.
  • Call GetProperties method on Type instance. Make sure that you use the appropriate BindingFlags attribute to get only the properties that are of interest. In our case we are only interested in public static properties. Therefore we will use BindingFlags.Public, BindingFlags.Static and BindingFlags.DeclaredOnly ORed together. The purpose of specifying BindingFlags.DeclaredOnly attribute is to get only the static properties that are declared only in this class only. We are not interested in properties of any parent class or structure.
  • Iterate through each item in PropertyInfo array value returned by GetProperties method. Call Name property on PropertyInfo object to get the name of each color. And call GetValue method to get the actual value of Color.
  • Rest is just implementation detail and book keeping on how to arrange all the colors on the bitmap and display it as a chart.

The complete code is attached with the article. Take a look at it for details.

C#
Color testColor = Color.AliceBlue;
Type colorType = testColor.GetType();
if (null != colorType)
{
    PropertyInfo[] propInfoList =
     colorType.GetProperties(BindingFlags.Static|BindingFlags.DeclaredOnly
        |BindingFlags.Public);
    int nNumProps = propInfoList.Length;
    for (int i = 0; i < nNumRows; i++)
    {
        PropertyInfo propInfo = (PropertyInfo)propInfoList[nIdx];
        Color color = (Color)propInfo.GetValue(null, null);
        string strColorName = propInfo.Name;
    }
}                            

The complete color chart is available at our web site at Complete Color Chart.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
To learn more about us, Please visit us at http://www.netomatix.com

Comments and Discussions

 
QuestionSame result without reflection? Pin
Adrian Cole2-Aug-09 18:33
Adrian Cole2-Aug-09 18:33 
GeneralExample Code Fix Pin
Code Deamon28-Aug-07 3:32
Code Deamon28-Aug-07 3:32 
QuestionAn HTML chart? Pin
orcasquall16-Apr-05 16:31
orcasquall16-Apr-05 16:31 
GeneralPNG image format Pin
Drew Noakes24-Nov-04 7:06
Drew Noakes24-Nov-04 7:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.