答案 0 :(得分:0)
如果您使用的是基于Shell的Xamarin.forms应用程序,则可以使用Shell.TitleView轻松实现这一点,定义标题内容,对其进行绑定甚至随意设置样式。
在您的ContentPage
内:
<Shell.TitleView>
<Label Text="Your Title" HorizontalTextAlignment="Center" HorizontalOptions="CenterAndExpand"/>
</Shell.TitleView>
您将避免使用自定义渲染器。
如果您需要根据平台进行某些特殊调整,则可以使用OnPlatform。