BarBackgroundColor在Xamarin Forms应用程序中不起作用

时间:2019-05-10 13:40:25

标签: xamarin xamarin.forms

在下面的第20行,我试图将Xamarin Forms应用程序中的BarBackgroundColor设置为rgb值为0 69 140的蓝色阴影。

enter image description here

0 69 140颜色应导致...

Google Color Picker enter image description here

但是相反,应用程序中的背景色看起来像...

enter image description here

有人可以看到我在做什么错,以及如何更改颜色以匹配所需的蓝色吗?同样的颜色也会在Android方面产生。

1 个答案:

答案 0 :(得分:2)

如果您阅读docs,将会看到构造函数

public Color (double r, double g, double b);

将值限制在[0..1]

之间

您应该使用FromRGB静态方法

var color = Color.FromRGB(0, 69, 140);

其int args在[0-255]范围内