我在XAML中使用Xamarin的ToolbarItems类:
<ContentPage.ToolbarItems>
<ToolbarItem Text="Sent Messages" Clicked="ToolbarItem_OnClicked"
Order="Primary" Priority="0" />
</ContentPage.ToolbarItems>
有没有办法更改所有工具栏项目的背景颜色和文本颜色?
解决方法:
创建导航页面时,您可以按以下方式更改ToolbarItems的背景颜色和文本颜色.
new NavigationPage (new MyPage ()) {
BarBackgroundColor = Color.Green, BarTextColor = Color.White
};
希望这可以帮助.