使用 Shell 时如何在 Xamarin.Forms 中设置导航文本颜色
How to set Navigation text color in Xamarin.Forms when using Shell
在我的 AppShell.xaml 中,我有一些 UI 主题的设置。
例如,
<Setter Property="Shell.BackgroundColor" Value="Blue" />
<Setter Property="Shell.TitleColor" Value="White" />
但是,我找不到 iOS 中 <-(后退)按钮旁边显示的文本的 Shell 设置。
我试过使用 NavigationPage 对象进行设置,但没有效果。
这个怎么设置?谢谢
编辑:请参阅下面我自己的 answer/solution。
我找到了解决方案。
控制后退按钮颜色的是 ForegroundColor setter。
例如:
<Setter Property="Shell.ForegroundColor" Value="White" />
在我的 AppShell.xaml 中,我有一些 UI 主题的设置。 例如,
<Setter Property="Shell.BackgroundColor" Value="Blue" />
<Setter Property="Shell.TitleColor" Value="White" />
但是,我找不到 iOS 中 <-(后退)按钮旁边显示的文本的 Shell 设置。 我试过使用 NavigationPage 对象进行设置,但没有效果。
这个怎么设置?谢谢
编辑:请参阅下面我自己的 answer/solution。
我找到了解决方案。
控制后退按钮颜色的是 ForegroundColor setter。
例如:
<Setter Property="Shell.ForegroundColor" Value="White" />