comboBox的 SelectedIndexChanged事件
通过选择的项,到数据库中找到相应的数据
放入dataset中,在赋值给textBox
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("server=.;database=MyBook;uid=sa;pwd=gb123");
string sql = "select * from test where name='" + this.comboBox1.SelectedItem.ToString() + "'"; //根据选中的值到数据库找东西
con.Open();
SqlCommand cmd = new SqlCommand(sql, con);
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(ds);
con.Close();
this.textBox1.Text = ds.Tables[0].Rows[0][2].ToString();
this.textBox2.Text = ds.Tables[0].Rows[0][3].ToString();
}
“正怒月神”的方法可用
控件状态改为回传
有一个onchange事件,把你要绑定的代码写在事件里
……
用伪代码给你写吧:
public void comboBox1_SelectIndexChagned(Object sender, EventArgs e)
{
var 取到的东西 = comboBox1.Items[comboBox1.SelectedIndex];
商品详情 s = 数据库访问类. 根据序号取得商品详情(取到的东西.序号);
商品数量.Text = s.商品数量;
商品单价.Text = s.商品单价;
}
上面这个函数就是个事件. 在设计器中选中comboBox1, 点属性旁边的金色雷电按钮到事件列表, 双击SelectIndexChanged就能看到这个函数了.