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中的颜色转换的主要内容,如果未能解决你的问题,请参考以下文章

MaterialDesign ComboBox 箭头调整大小和更改颜色 WPF

WPF使用转换器更改datagrid单元格背景颜色

WPF 颜色转换

WPF到/从WindowsForms颜色转换

AlertDialog 更改片段中的背景颜色 [重复]

WPF 更改(覆盖)所有控件中的突出显示和边框颜色