大家自行搜索下载Bayern.ttf,放入Resources/Fonts目录中,并且添加下面代码到MauiProgram.cs中。
EmbeddedFont.xaml
<?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MauiViews.MauiDemos.Book._06.EmbeddedFont" Title="EmbeddedFont" WidthRequest="300" HeightRequest="300"> <Grid> <Label x:Name="tst" FontSize="20" FontFamily="Bayern" Text="This is an embedded font"/> </Grid> </ContentPage>
运行效果