UWP App中的背景颜色

时间:2017-08-31 12:49:31

标签: xamarin uwp xamarin.forms uwp-xaml xamarin.uwp

我们最近从Windows框架从10.0.10240升级到10.0.15063。我们遇到了button设计问题,其中background color显示为灰色。在升级之前,这种颜色没有出现。我们需要删除文本后面的这种灰色。

After windows framework upgrade

在悬停图像时,也会出现相同的前景色:

enter image description here

Xamarin.Forms.Button没有Foreground颜色等效属性。我尝试了设置Xamarin.Forms.Platform.UWP.FormsButton.Foreground的自定义渲染器,但对按钮控制没有影响。

有没有Style Setter我可以尝试解决这个问题?请帮忙。

修改

这是通过应用背景颜色解决的,之前我在按钮上设置了前景,

this.Control.BackgroundColor = new SolidColorBrush() { Opacity = 1, Color= Windows.UI.Colors.Transparent };

1 个答案:

答案 0 :(得分:0)

这是通过应用背景色来解决的。

this.Control.BackgroundColor = new SolidColorBrush(){Opacity = 1,Color = Windows.UI.Colors.Transparent };