我的字体太大了,无法显示想要显示的字数。有谁对我如何更改字体大小有任何建议。我希望能够在共享代码中做到这一点,但是如果它需要自定义渲染器,那么有人可以向我展示如何做到这一点吗?
谢谢
答案 0 :(得分:1)
因此,如果您使用的是Xamarin.Forms 3.2.0或更高版本,则可以使用TitleView
属性,如下所示:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Xamarin.Forms.Controls.GalleryPages.TitleView">
<NavigationPage.TitleView>
<Label Text="This is my Title" FontSize="12" TextColor="White" />
</NavigationPage.TitleView>
<!-- YOUR CONTENT HERE-->
</ContentPage>