ColorTranslator.FromHtml / ToHtml等同于WPF

时间:2015-07-22 18:17:28

标签: c# wpf winforms

谷歌搜索后,没有找到解决方案。我正在将我的一个旧项目升级到WPF(我有0经验并且正在做这个学习)但是找不到相应的方法:

System.Drawing.ColorTranslator.ToHtml(Color.White)

我用它来存储和检索XML中的颜色。你们中任何人都知道WPF中的等效方法吗?

2 个答案:

答案 0 :(得分:3)

目前您正在使用System.Windows.Media.Color尝试使用System.Drawing.Color代替,这可能会解决您的问题:

System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.White);

答案 1 :(得分:1)

添加对System.Drawing的引用,如下所示,

enter image description here

然后去

System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.White);