c# – 在WPF中将整数转换为颜色

前端之家收集整理的这篇文章主要介绍了c# – 在WPF中将整数转换为颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 WPF中将整数转换为颜色?
例如,我想将16711935转换为颜色.

如何在Windows窗体中执行类似下面的操作,在WPF中?

myControl.Background = Color.FromArgb(myColorInt);

解决方法

使用 BitConverter类将值转换为字节数组,这样您就不需要导入另一个命名空间.
byte[] bytes = BitConverter.GetBytes(16711935);
this.Background = new SolidColorBrush( Color.FromArgb(bytes[3],bytes[2],bytes[1],bytes[0]));
原文链接:https://www.f2er.com/csharp/100820.html

猜你在找的C#相关文章