You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
485 B
C#

Get all system installed font
using System;
using System.Drawing;
using System.Drawing.Text;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
public class Test{
static void Main()
{
InstalledFontCollection fonts = new InstalledFontCollection();
for(int j = 0; j < fonts.Families.Length; j++)
{
Console.WriteLine(fonts.Families[j].Name);
}
}
}