在哪里可以找到构造函数 'public Font( string familyName, float emSize )' 中的字体列表?

Where can I find a list of fonts that go in the constructor 'public Font( string familyName, float emSize )'?

在过去的一个小时里,我一直在努力弄清楚在哪里可以获得构造函数

中进入 familyName 的所有可能值的列表
public Font(
    string familyName,
    float emSize
)

https://msdn.microsoft.com/en-us/library/164w6x6z(v=vs.110).aspx

我正在尝试找到接近于细的字体

wf_segoe-ui_semilight,wf_segoe-ui_light,wf_segoe-ui_normal,'Segoe UI Semilight','Segoe UI Light','Segoe UI',Arial,sans-serif !important

https://www.microsoft.com/en-us/

到目前为止,我一直在使用 "Guess and check" 方法,在输入新字体名称后重新编译我的应用程序。

检查 FontFamily class

using System;
using System.Drawing;

namespace ConsoleApplicationFont
{
    class Program
    {
        static void Main(string[] args)
        {
            foreach (var item in FontFamily.Families)
                Console.WriteLine(item.Name);

            Console.ReadLine();
        }
    }
}