C# get hex value of color code example
Example 1: c# color hex
control.BackColor = ColorTranslator.FromHtml("#626262");
Example 2: c# color hex
this.control.BackColor = System.Drawing.ColorTranslator.FromHtml("#626262");
control.BackColor = ColorTranslator.FromHtml("#626262");
this.control.BackColor = System.Drawing.ColorTranslator.FromHtml("#626262");