c#-WPF string,color,brush之间的转换

2021-07-10 14:06

阅读:474

标签:views   转换   lin   .net   ref   log   rgb   net   ffffff   

原文:c#-WPF string,color,brush之间的转换

String转换成Color

string-"ffffff"

Color color = (Color)ColorConverter.ConvertFromString(string);

String转换成Brush

BrushConverter brushConverter = new BrushConverter();
Brush brush = (Brush)brushConverter.ConvertFromString(string);

Color转换成Brush

Brush brush = new SolidColorBrush(color));

Brush转换成Color

//先将Brush转成string,再转成Color

 Color color= (Color)ColorConverter.ConvertFromString(brush.ToString());

//将Brush转成SolidColorBrush,再取Color

 Color color= ((SolidColorBrush)CadColor.Background).Color;

(ARGB)转换为Brush

Brush br = new SolidColorBrush(Color.FromArgb(cl.Color.A, cl.Color.R, cl.Color.G, cl.Color.B)); 


c#-WPF string,color,brush之间的转换

标签:views   转换   lin   .net   ref   log   rgb   net   ffffff   

原文地址:https://www.cnblogs.com/lonelyxmas/p/9678755.html


评论


亲,登录后才可以留言!