• c# 用代码定义带数据的datatable


                DataTable customerTable = new DataTable();
                customerTable.Columns.Add("clsCustomerID", typeof(string));
                customerTable.Columns.Add("clsCustomerNM", typeof(string));      //定义列
    
                DataRow row = customerTable.NewRow();     //新加一行
                row["clsCustomerID"] = "01.2136";
                row["clsCustomerNM"] = "MAXIS1";
    
                customerTable.Rows.Add(row);

                DataRow row1 = customerTable.NewRow();
                row1["clsCustomerID"] = "01.2255";
                row1["clsCustomerNM"] = "VSC2_PRE_W1";

                customerTable.Rows.Add(row1); //再加一行


                DataRow row22 = customerTable.NewRow();
                row22["clsCustomerID"] = "01.2311";
                row22["clsCustomerNM"] = "HGC_W1";

                customerTable.Rows.Add(row22); //第三行


                comboBox1.DataSource = customerTable;
                comboBox1.DisplayMember = "clsCustomerNM";
                comboBox1.ValueMember = "clsCustomerID"; //将设置好的datatable 赋值给 comboBox



  • 相关阅读:
    iOS 内购讲解
    实现抓图的工具2
    实现抓图的工具
    关于胖客户端
    实时进销存
    DataGridView隔行显示不同的颜色
    C#数据库绑定
    VS2012中数据库架构的比较
    delphi使用outputdebugstring调试程序和写系统日志
    drupal7安装中文错误
  • 原文地址:https://www.cnblogs.com/lthxk-yl/p/3896391.html
Copyright © 2020-2023  润新知