Możesz także dodać elementy w kodzie:
cboWhatever.Items.Add("SomeItem");
Ponadto, aby dodać coś, w którym kontrolujesz wyświetlanie / wartość (z mojego doświadczenia prawie kategorycznie potrzebne), możesz to zrobić. Znalazłem tutaj dobre odniesienie do stackoverflow:
Combobox pary klucz-wartość w WPF
Kod podsumowujący wyglądałby mniej więcej tak:
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"));