我有一个表单,其中有两个组合框和一个网格, 我已经在selectedindex改变了组合框的事件上写了过滤代码,为组合框设置了SuggestAppend属性。当我输入一个国家名称,例如印度,然后按回车键,所选索引改变的事件不会立即触发,当我点击某处时,它的火灾并给出输出。 请建议我做什么。谢谢你提前
protected void cbCountry_SelectedIndexChanged(object sender,EventArgs e) { GetCondition(); Fillgrid(); }
public string GetCondition()
{
string Condition = "";
if (cbEmployee.SelectedIndex > 0)
{
Condition = Condition + " And reg_no=" + cbEmployee.SelectedValue;
}
if (cbCountry.SelectedIndex > 0)
{
Condition = Condition + " And country='" + cbCountry.SelectedItem.Text + "'";
}
return Condition;
}
答案 0 :(得分:0)
检查表单设计器(designer.cs)是否声明了事件
this.cbCountry.SelectedIndexChanged + = new System.EventHandler(this.cbCountry_SelectedIndexChanged);
如果未声明,您可以在设计器中或以加载形式
添加它