How can I fill a combo-box with a list of all the available fonts in the system?
ComboBox1.ItemsSource = new InstalledFontCollection().Families;
and for the first time selected item:
private void Combo1_Loaded(object sender, RoutedEventArgs e) { ComboBox1.Text = "Tahoma"; }