반응형 C# combobox1 기본 combobox c#기본 combo box //아이템 추가 1 cboPriorty.DisplayMember = "Value"; cboPriorty.ValueMember = "Key"; cboPriorty.Items.Add(new { Value = "high", Key = "high" }); cboPriorty.Items.Add(new { Value = "normal", Key = "normal" }); string value = (cboPriorty.SelectedItem as dynamic).Value; //아이템 추가 2 cboTest.DisplayMember = "Value"; cboTest.ValueMember = "Key"; Dictionarydic = new Dictionary(); dic.Add("1", ".. 2020. 9. 4. 이전 1 다음 반응형