ComboboxEdit 中 Combobox.SelectedValue 的相关字段是什么当我从中选择某些内容时
in Devexpress ComboboxEdit ..
combo.EditValue ="1"
combo.SelectedItem="1"
combo.SelectedText="1"
these all gets same value
In Normal Winform Combobox
cmb.SelectedItem="1"
cmb.SelectedText=""
cmb.SelectedValue=null
我怎样才能在 Devexpress ComboxEdit 中实现这一点..</p>
我有的例子
Dictionary<string,string> dic = new Dictionary<string,string>();
dic.Add("Test","5");
dic.Add("Test","6");
dic.Add("Test","7");
foreach(DictionaryEntry dic in dic)
{
Combobox.Items.add(dic);
Comboboxedit.Properties.Items.Add(dic);
}
当我为普通的 Coombobox winfrom 设置值时
Combobox.SelectedValue = dic["Test"];
我怎样才能为 Devexpress ComboboxEdit 做同样的事情,,,,,