zoukankan      html  css  js  c++  java
  • 拖拽自动生成的DataGridView和BindingSource操作数据库(增加,修改,删除)自己实现

    参考:http://hi.baidu.com/j2eedoc/blog/item/507ca70e1281c4e036d122dc.html

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Data.SqlClient;

    namespace DBdata
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }

            private void Form1_Load(object sender, EventArgs e)
            {
                // TODO: 这行代码将数据加载到表“crmdbDataSet.t_color”中。您可以根据需要移动或移除它。
                this.fAQTableAdapter.Fill(this.clothesShopDataSet2.FAQ);

            }

      //  自动更新、删除、添加

      private void dataGridView_FAQ_RowLeave(object sender, DataGridViewCellEventArgs e)
      {

        //  实现 dataGridView 编辑的自动提交
        this.fAQTableAdapter.Adapter.Update(this.clothesShopDataSet2); //!! 只有这句话需要手动输入,其他都是自动生成
      }

        }
    }

  • 相关阅读:
    线程
    进程2
    进程
    socketserver
    黏包
    初始网络编程
    模块
    super
    mro c3算法
    日志固定格式
  • 原文地址:https://www.cnblogs.com/carl2380/p/2541354.html
Copyright © 2011-2022 走看看