我们最近从Windows框架从10.0.10240升级到10.0.15063。我们遇到了button
设计问题,其中background color
显示为灰色。在升级之前,这种颜色没有出现。我们需要删除文本后面的这种灰色。
在悬停图像时,也会出现相同的前景色:
Xamarin.Forms.Button
没有Foreground颜色等效属性。我尝试了设置Xamarin.Forms.Platform.UWP.FormsButton.Foreground
的自定义渲染器,但对按钮控制没有影响。
有没有Style Setter我可以尝试解决这个问题?请帮忙。
修改
这是通过应用背景颜色解决的,之前我在按钮上设置了前景,
this.Control.BackgroundColor = new SolidColorBrush() { Opacity = 1, Color= Windows.UI.Colors.Transparent };
答案 0 :(得分:0)
这是通过应用背景色来解决的。
this.Control.BackgroundColor = new SolidColorBrush(){Opacity = 1,Color = Windows.UI.Colors.Transparent };