Hai
In this Example the ListBox will fill the Fonts installed in the System. Namespace for this
using System.Drawing.Text;
C# Code
InstalledFontCollection fonts = new InstalledFontCollection();
foreach (FontFamily fa in fonts.Families)
{
listBoxFont.Items.Add(fa.Name);
}
pramod.v.g