Grazie per l'aiuto. Questo mi ha aiutato. Nota a margine, si può anche aggiungere elementi in codice:
cboWhatever.Items.Add("SomeItem");
Inoltre, per aggiungere qualcosa in cui si controlla display/valore, (quasi categoricamente necessario nella mia esperienza) è possibile farlo. Ho trovato un buon riferimento StackOverflow qui:
Key Value Pair Combobox in WPF
codice Sum-up sarebbe qualcosa di simile:
ComboBox cboSomething = new ComboBox();
cboSomething.DisplayMemberPath = "Key";
cboSomething.SelectedValuePath = "Value";
cboSomething.Items.Add(new KeyValuePair<string, string>("Something", "WhyNot"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Deus", "Why"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Flirptidee", "Stuff"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Fernum", "Blictor"));
lo apprezzo. –