当前位置:   article > 正文

【小5聊】C# Color转Brush,Brush、Color、String相互转换_c# brush

c# brush

【开发环境】

开发系统:Windows 10

开发平台:.Net Framework 4.6.1

开发语言:C#

开发工具:Visual Studio Professional 2017,版本 15.9.9

文章作用:记录、备忘、总结、分享、理解

相互学习:微信号-xgwkf566

人生格言:勤能补拙

 

转换,主要还是在Color转Brush方式上,总结如下

1、Color转Brush,方式一

using System.Drawing;

Brush brush=new SolidBrush(Color);

2、Color转Brush,方式二

using System.Windows.Media;

Brush brush = new SolidColorBrush(color));

 

以下转换

3、String转换成Color

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

4、String转换成Brush

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

5、Brush转换成Color有两种方法:

(1)先将Brush转成string,再转成Color。

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

(2)将Brush转成SolidColorBrush,再取Color。

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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/621674
推荐阅读
相关标签
  

闽ICP备14008679号