C# String 转换成 Color[zz]

string转换成color

           string col = "#FF8400";
           this.BackColor = System.Drawing.ColorTranslator.FromHtml(col);

color转换成string

           Color mycolor = this.BackColor;
            string strcol = System.Drawing.ColorTranslator.ToHtml(mycolor);
            MessageBox.Show(strcol);
posted @ 2008-12-12 09:55  stu_acer  阅读(2991)  评论(1编辑  收藏  举报