作成したMAUIプログラムをWindowsやAndroid(Emulator)で確認したところ、指定したFontAttributeがちゃんと、反映されているのだが、macで確認すると、反映されていないことに気づいた。
・・・
<Label Text="Bold Style"
FontSize="24"
FontAttributes="Bold"/>
<Label Text="Italic Style"
FontSize="24"
FontAttributes="Italic"/>
・・・
調べてみた結果、FontFamily指定の問題らしい。とりあえず、FontFamilyをEmptyにすると、FontAttributeが反映された。
・・・
<Label Text="Bold Style"
FontSize="24"
FontAttributes="Bold"
FontFamily="Empty"/>
<Label Text="Italic Style"
FontSize="24"
FontAttributes="Italic"
FontFamily="Empty"/>
・・・
この位、プラットフォーム間で統一できないものだろうか・・・