Sie können auch Elemente im Code hinzufügen:
cboWhatever.Items.Add("SomeItem");
Sie können dies auch tun, um etwas hinzuzufügen, bei dem Sie die Anzeige / den Wert steuern (meiner Erfahrung nach fast kategorisch erforderlich). Ich habe hier eine gute Stackoverflow-Referenz gefunden:
Schlüsselwertpaar Combobox in WPF
Summencode wäre ungefähr so:
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"));