[CSHARP]
using System.Drawing.Text;[/CSHARP]

[CSHARP]
InstalledFontCollection fonts = new InstalledFontCollection();
foreach (FontFamily font in fonts.Families)
listBox1.Items.Add(font.Name);
[/CSHARP]