1. 程式人生 > >使用Windows實現數據綁定----------的解析

使用Windows實現數據綁定----------的解析

lda ons mes 數據綁定 select ted format nts log


一.綁定下拉框數據

string sql = "select * from Grade";
SqlDataAdapter sda = new SqlDataAdapter(sql,helper.Con);
sda.Fill(ds,"Grade");
//新建一個下拉框選項
DataRow row = this.ds.Tables["Grade"].NewRow();
row[0] = -1;
row[1] = "請選擇";
this.ds.Tables["Grade"].Rows.InsertAt(row,0);

//綁定下拉框
this.cbograde.DataSource=ds.Tables["Grade"];
this.cbograde.DisplayMember="GradeName";
this.cbograde.ValueMember="GradeId";

二.綁定DataGradeView數據

//根據年級查詢GradeId
string sql = "select * from Student where GradeId=‘" + this.cbograde.SelectedValue + "‘";
try
{
studentsda = new SqlDataAdapter(sql, helper.Con);

if (ds.Tables["Student"] != null) {
ds.Tables["Student"].Clear();
}
studentsda.Fill(ds, "Student");
//綁定數據源和DataGradeView
this.dgvStudent.DataSource = ds.Tables["Student"];
}
catch (Exception x)
{
MessageBox.Show(x.Message);
}

三.實現數據更新

DialogResult result=MessageBox.Show("確定更改信息嗎?","提示",MessageBoxButtons.YesNo,MessageBoxIcon.Information);
if (result == DialogResult.Yes) {
SqlCommandBuilder scb = new SqlCommandBuilder(studentsda);
studentsda.Update(ds, "Student");
}

使用Windows實現數據綁定----------的解析