mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 02:44:56 +08:00
- Add album text in lyrics render - Improve song info update and draw algo - Upgrade to .NET 10
11 lines
262 B
C#
11 lines
262 B
C#
using Microsoft.Graphics.Canvas.Text;
|
|
using System.Linq;
|
|
|
|
namespace BetterLyrics.WinUI3.Helper
|
|
{
|
|
public static class FontHelper
|
|
{
|
|
public static string[] SystemFontFamilies => CanvasTextFormat.GetSystemFontFamilies().Order().ToArray();
|
|
}
|
|
}
|