आप कोड में आइटम भी जोड़ सकते हैं:
cboWhatever.Items.Add("SomeItem");
इसके अलावा, कुछ ऐसा जोड़ने के लिए जहां आप प्रदर्शन / मूल्य को नियंत्रित करते हैं, (लगभग स्पष्ट रूप से मेरे अनुभव में आवश्यक) आप ऐसा कर सकते हैं। मुझे यहां एक अच्छा स्टैक्वैरोफ़्लो संदर्भ मिला:
WPF में मुख्य मूल्य जोड़ी Combobox
सम-अप कोड कुछ इस तरह होगा:
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"));