Converting HTML Color Code to System.Drawing.Color(WinMobile application)
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");