我是Windows Phone开发世界的新手。我已经用Google搜索并查找了Windows Phone文档,但我仍然无法找到我正在寻找的内容(或者我可能错过了它)。
我的问题是如何使用自定义hex / rgb背景颜色而不是Windows Phone SDK提供的预定义颜色?有可能吗?
答案 0 :(得分:1)
当然可以,否则每个人的应用程序看起来都一样:D
using using System.Windows.Media;
Color pure_red = Color.FromArgb(0xFF, 0xFF, 0x00, 0x00); // alpha,red,green,blue
有时一个UI元素需要Brush
代替,如果是这种情况,那么你想要这样的东西
this.Background = new SolidColorBrush(Color.FromArgb(0xFF, 0x00, 0x00, 0x00));
祝你好运:D