mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-29 11:12:54 +00:00
14 lines
446 B
C#
14 lines
446 B
C#
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) } }
|
|
});
|
|
}
|
|
}
|