将 System.Windows.Media.Brush 转换为 System.Drawing.Brush
如何将 System.Windows.Media.Brush 转换为 System.Drawing.Brush?
我试图获取格式化为 System.Drawing.Color 对象的 system.windows.media.brush 的颜色。
下面的解决方案不起作用,因为它需要一个solidcolorbrush对象,而我需要转换的对象是一个system.windows.media.brush对象:
public System.Drawing.Color GetColor( System.Windows.Media.SolidColorBrush oBrush )
{
return System.Drawing.Color.FromArgb( oBrush.Color.A,
oBrush.Color.R,
oBrush.Color.G,
oBrush.Color.B );
}
How can I convert a System.Windows.Media.Brush to System.Drawing.Brush?
I'm trying to get the color of a system.windows.media.brush formatted to a System.Drawing.Color object.
The below solution doesn't work because it requires a solidcolorbrush object, whereas the object i need converting from is a system.windows.media.brush object:
public System.Drawing.Color GetColor( System.Windows.Media.SolidColorBrush oBrush )
{
return System.Drawing.Color.FromArgb( oBrush.Color.A,
oBrush.Color.R,
oBrush.Color.G,
oBrush.Color.B );
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信你可以将它作为 SolidColorBrush 来获取颜色。
尝试类似的方法:
I believe you can just cast it as a SolidColorBrush to get the color.
Try something like: