NavigationPage的title颜色属性是BarTextColor ,此外还有BarBackgroundColor 。
下面的代码将title字体颜色更改为白色。
NavigationPage StartPage = new NavigationPage(new MyContentPage())
{
BackgroundColor = Color.DodgerBlue,
BarTextColor=Color.White,
};
Current.MainPage = StartPage;
更多信息参考:https://forums.xamarin.com/discussion/19277/how-to-change-xamarin-form-navigationpage-title-color