PortProxyGUI/PortProxyGUI.Shared/Util.cs

18 lines
458 B
C#
Raw Normal View History

2022-02-23 00:41:01 +08:00
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
namespace PortProxyGUI
{
public class Util
{
/// <summary>
/// Compatibility between .NET Framework and .NET Core.
/// <see href="https://docs.microsoft.com/en-us/dotnet/core/compatibility/winforms" />
/// </summary>
public static readonly Font UiFont = new Font(new FontFamily("Microsoft Sans Serif"), 8f);
}
}