Users Pricing

forum

Home Forums How to get all font styles from system in c#.net? – MindStick

How to get all font styles from system in c#.net?

Anonymous User 9985 24 Aug 2011
I am implementing a Font Dialog Box application.
I have created 3 list boxes for font family,font style & font size & a text box to display the formatted text.
I have done the coding to get all the font families & to apply them in the text box in the following code:
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
Font f = new Font(listBox1.SelectedItem.ToString(),24);
textBox1.Font = f;
}
private void Form1_Load(object sender, EventArgs e)
{
InstalledFontCollection ifc = new InstalledFontCollection();
IEnumerator ie;
ie = ifc.Families.GetEnumerator();
while (ie.MoveNext())
{
listBox1.Items.Add(ie.Current.ToString().Substring(18).TrimEnd(']'));
}
But I am not able to get the system font styles & font sizes to the listbox1 & listbox2
please help me.
Thanks.

2 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md