码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2018-09-20 11:18:40      阅读:243      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!