• 实现Windows的数据绑定


    一.绑定下拉框数据

         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");
                }

  • 相关阅读:
    docker---基本操作
    one_day_one_linuxCmd---netstat命令
    docker---Dockerfile编写
    one_day_one_linuxCmd---sz命令
    one_day_one_linuxCmd---scp命令
    同义英语词汇整理
    网络实习——校园网络设计方案
    实现 FTP 客户端和服务器程序所调用的系统函数
    2020年上半年总结
    单片机的串行总线拓展技术
  • 原文地址:https://www.cnblogs.com/yjc1605961523/p/9458466.html
Copyright © 2020-2023  润新知