WPF中的颜色转换
2021-04-08 06:26
标签:转换 converter new color oms shc 颜色 col mst HEX16色转Bursh: RGB三原色转Bursh: HEX16色转Bursh: Color转Bursh: WPF中的颜色转换 标签:转换 converter new color oms shc 颜色 col mst 原文地址:https://www.cnblogs.com/lionwang/p/9090132.htmlBrush brush = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#FFFFFF"));
Brush brush = new SolidColorBrush(Color.FromRgb(255, 255, 255));
Brush brush = (Brush)new BrushConverter().ConvertFromString("#FFFFFF");
Brush brush = new SolidColorBrush(Colors.White));