drupal stats

DropDownList

Add fonts into DropDownList/Combobox

Add fonts into DropDownList in Web Forms

foreach (System.Drawing.FontFamily f in System.Drawing.FontFamily.Families)

{

 

    DropDownList1.Items.Add(f.Name);

 

}

Add fonts into DropDownList thumb Add fonts into DropDownList/Combobox

 

Add fonts into ComboBox in Windows Forms

public partial class Form1 : Form

{

    private class Item

    {

        public string Name;

        public string Value;

        public Item(string name, string value)

        {

            Name = name; Value = value;

        }

        public override string ToString()

        {               

            return Name;

        }

    }

 

    public Form1()

    {

        InitializeComponent();

        foreach (System.Drawing.FontFamily f in System.Drawing.FontFamily.Families)

        {

            Item item = new Item(f.Name, f.Name);                

            comboBox1.Items.Add(item);                

        }

    }

}

Add fonts into ComboBox thumb Add fonts into DropDownList/Combobox