本文介绍了当comboBox与数据库绑定时,如何在comboBox中的索引0处添加名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个ComboBox,它在新窗口调用(这意味着构造函数)时由Query(带数据库)绑定。现在我想在索引0处添加选择。我该如何添加?
我使用
I have a ComboBox which is bind by Query(with Database) when new window call(that means constructor). Now I want to add "Select" at index 0.so how can i add ??
I used
ComboBox1.Text="--Select--"
但它不起作用。
然后我试过
but it is not working.
then i tried
if (cmbGroup.Items.Count > 0)
{
cmbGroup.Items.Insert(0, "Select Item");
cmbGroup.SelectedIndex = 0;
}
或
or
cmbGroup.Items.Insert(0, "Select Item");
cmbGroup.SelectedIndex = 0;
但是它给出了一个例外 - 当ItemSource正在使用时,操作无效。使用ItemsControl.ItemSource访问和修改元素。那我该怎么办?
but it gives an exception that is- Operation is not valid while ItemSource is in use. Access and Modify elements with ItemsControl.ItemSource instead. so what can i do ??
推荐答案
select id, name from emp
union all
select 0, '--Select Any--'
order by id
这篇关于当comboBox与数据库绑定时,如何在comboBox中的索引0处添加名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!