请帮助我......
答案 0 :(得分:0)
您可以使用以下代码:(在设计视图中双击文本框)
void textBox1_TextChanged(object sender, EventArgs e)
{
PopulateGrid(textBox1.Text);
}
void PopulateGrid(string queryStr)
{
//here you can write the binding code
}