2024-07-11 03:17:15 +08:00
|
|
|
using Avalonia;
|
|
|
|
using Avalonia.Media;
|
|
|
|
|
|
|
|
namespace Semi.Avalonia.Demo.Web;
|
|
|
|
|
|
|
|
public static class AvaloniaAppBuilderExtensions
|
|
|
|
{
|
|
|
|
private static string DefaultFontFamily => "avares://Semi.Avalonia.Demo.Web/Assets#Source Han Sans CN";
|
|
|
|
|
|
|
|
public static AppBuilder WithSourceHanSansCNFont(this AppBuilder builder) =>
|
|
|
|
builder.With(new FontManagerOptions
|
|
|
|
{
|
|
|
|
DefaultFamilyName = DefaultFontFamily,
|
2024-11-15 17:01:48 +08:00
|
|
|
FontFallbacks = [new FontFallback { FontFamily = new FontFamily(DefaultFontFamily) }]
|
2024-07-11 03:17:15 +08:00
|
|
|
});
|
|
|
|
}
|