C#String类型转换成Brush类型:
using System.Windows.Media; BrushConverter brushConverter = new BrushConverter(); Brush brush = (Brush)brushConverter.ConvertFromString(“#cacaca”);
注意:
using System.Windows.Media;时如果出现错误,是因为没有引入PresentationCore
解决方案资源管理器->右击引用->添加引用->程序集->框架->勾选PresentationCore->点击确认。 此方法不建议,会与using System.Drawing;中的部分方法冲突。
原文地址:https://www.cnblogs.com/ming-4/p/12268396.html
时间: 2024-10-04 02:40:28