Xamarin.Forms样式BarBackgroundColor透明

时间:2018-06-22 06:48:01

标签: android ios xamarin.forms transparent navigationbar

我的目标是在Xamarin.Forms中为Android和iOS提供一个透明的导航栏。问题是值的六色不起作用(例如#FFFFFF00)

这是我的一般样式表代码:

<Style TargetType="NavigationPage">
    <Setter Property="BarBackgroundColor" Value="[insert value for transparent]" />
</Style>

1 个答案:

答案 0 :(得分:0)

您还可以定义颜色名称:

 <Style TargetType="NavigationPage">
       <Setter Property="BarBackgroundColor" Value="Transparent" />
 </Style>

如果仍然无法正常工作,则必须在Android项目style.xml页面中进行更改。