如何使用xamarin.forms在Windows Phone中设置工具栏的背景颜色?

时间:2016-07-24 16:51:28

标签: xamarin xamarin.windows

我想设置应用程序栏蓝色的背景颜色。我可以在xamarin.forms中执行此操作吗?我是否必须编写相同的本地代码?

1 个答案:

答案 0 :(得分:0)

我自己找到了问题的答案。 在MainPage.xaml中的原生Windows Phone 8.1应用程序中,请编写以下代码:

<Page.BottomAppBar>
    <CommandBar Background="#0073b5" Foreground="White">

    </CommandBar>
</Page.BottomAppBar>