WPF中的颜色转换
Posted lionwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF中的颜色转换相关的知识,希望对你有一定的参考价值。
HEX16色转Bursh:
Brush brush = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#FFFFFF"));
RGB三原色转Bursh:
Brush brush = new SolidColorBrush(Color.FromRgb(255, 255, 255));
HEX16色转Bursh:
Brush brush = (Brush)new BrushConverter().ConvertFromString("#FFFFFF");
Color转Bursh:
Brush brush = new SolidColorBrush(Colors.White));
以上是关于WPF中的颜色转换的主要内容,如果未能解决你的问题,请参考以下文章