//前两个是将textbox中的值添加到dataset中 ds.Tables[0].Rows[0]["数据库中与输入框对应的列名"] = textBox_bh.Text; ds.Tables[0].Rows[0]["数据库中与输入框对应的列名"] = textBox_mc.Text; //将checkedit的选择与否的状态添加到dataset中去,checkedit_a与checkedit_b是checkedit控件的name ds.Tables[0].Rows[0]["数据库中与输入框对应的列名"] = checkedit_a.CheckState; ds.Tables[0].Rows[0]["数据库中与输入框对应的列名"] =checkedit_b.CheckState; //将上面输入的值显示到gridcontrol上 gridControl1.DataSource = ds.Tables[0].DefaultView;
时间: 2024-11-02 17:03:58