私はXamarinフォームで作業しています.TabbedPageのタブをいくつか含める必要がある場合、各タブのテキストのFontSizeを調整する必要があるようです。Tabbedのタブでテキストのフォントサイズを変更する方法
問題:タブのフォントサイズを調整するにはどうすればよいですか?
タブのプロパティを使用しようとしましたが、何もありませんでした。
public Product()
{
InitializeComponent();
this.title = ??
}
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local ="clr-namespace:MyApp.View"
BackgroundColor="White"
Title="Product and Service"
x:Class="MayApp.View.MainMenu">
<ContentPage.ToolbarItems>
<ToolbarItem Name="MenuItem1" Order="Primary" Icon="itemIcon1" Command="{Binding Item1Command}" Priority="0" />
<ToolbarItem Name="MenuItem2" Order="Primary" Icon="itemIcon2" Priority="1" />
</ContentPage.ToolbarItems>
<local:Product>
</local:Product>
<local:Service>
</local:Service>
</TabbedPage>
私の前の[解答](https://stackoverflow.com/a/38916926/5912513)は、iOSとAndroidの両方のためにどのように扱うか役に立つ –
@Yehorかもしれませんか?あなたのソリューションはDroidのみに適用されます。 – MilkBottle
回答があなたを助けた場合は、回答としてマークアップ/アップビーティングを検討してください。 –