mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-28 02:52:53 +00:00
17 lines
485 B
C#
17 lines
485 B
C#
using Avalonia;
|
|
using Avalonia.Media;
|
|
|
|
namespace v2rayN.Desktop.Common;
|
|
|
|
public static class AppBuilderExtension
|
|
{
|
|
public static AppBuilder WithFontByDefault(this AppBuilder appBuilder)
|
|
{
|
|
var uri = Path.Combine(Global.AvaAssets, "Fonts#Noto Sans SC");
|
|
return appBuilder.With(new FontManagerOptions()
|
|
{
|
|
//DefaultFamilyName = uri,
|
|
FontFallbacks = new[] { new FontFallback { FontFamily = new FontFamily(uri) } }
|
|
});
|
|
}
|
|
}
|