65.9K
CodeProject is changing. Read more.
Home

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

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.88/5 (5 votes)

Nov 6, 2011

CPOL
viewsIcon

36128

Here is a simple method:System.Drawing.Color mycol = System.Drawing.ColorTranslator.FromHtml("#FFFFFF");or:System.Drawing.Color mycol = System.Drawing.ColorTranslator.FromHtml("White");Further ReadingColorTranslator.FromHtml Method @ MSDN[^]

Here is a simple method:
System.Drawing.Color mycol = System.Drawing.ColorTranslator.FromHtml("#FFFFFF");
or:
System.Drawing.Color mycol = System.Drawing.ColorTranslator.FromHtml("White");

Further Reading