xamarinフォームアプリケーション全体のカスタムフォントをapp.xamlのスタイルを使用して設定しようとしています。しかし、私は同じものに対して未処理の例外を取得しています。xamarinfフォームアプリケーションのカスタムフォントを設定する方法
<Label Style="{StaticResource labelFont}"></Label>
このため、任意の解決策を次のように
<OnPlatform x:Key="AppFontFamily" x:TypeArguments="x:String"
Android="customfont.otf#CustomFont-Regular">
</OnPlatform>
<Style x:Key="labelFont" TargetType="Label">
<SetterProperty Property="FontFamily" Value="{StaticResource AppFontFamily}"></SetterProperty>
</Style>
私のコンテンツページにスタイルを使用していますか?
ドキュメントを読んだことがありますか? https://developer.xamarin.com/guides/xamarin-forms/user-interface/text/fonts/#Using_a_Custom_Font – Jason
@Jason、はい同じことを参照しながら作業していますが、アプリケーション全体に共通のフォントを追加する方法は、私はフォントファイルを意味する – user3165999