Click here to Skip to main content
15,884,177 members
Articles / Mobile Apps / Windows Mobile
Tip/Trick

Converting HTML Color Code to System.Drawing.Color(WinMobile application)

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
29 Apr 2011CPOL 24.6K   5   2
Converting HTML Color Code to System.Drawing.Color(WinMobile application)
I had a scenario where I needed to convert an HTML color code to System.Drawing.Color for using it in Windows Mobile Form application. So how do we do it? It is simple.

Well, here we go...

MIDL
string HTMLColor = "#ffe080";
int RGB = int.Parse(HTMLColor.Replace("#", ""), System.Globalization.NumberStyles.HexNumber);
Color oColor = Color.FromArgb(RGB);


HTML Color code will always be appended with a "#". So first, we need to remove it and convert the Hex color number to integer format. Now we can use inbuilt .NET class functions to convert the integer color value to color code.

It can be used like, say we have a text box control. Set the text box foreground color as:
MIDL
TextBox.ForeColor  = oColor;

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Unicel Technologies
India India
.Net developer by job. C developer by passion.

Comments and Discussions

 
Questionoptimize Pin
Shargon_855-Aug-11 22:44
Shargon_855-Aug-11 22:44 
AnswerRe: optimize Pin
Midhunlal G6-Aug-11 4:01
Midhunlal G6-Aug-11 4:01 

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.