服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - C# DataGridView绑定数据源的方法

C# DataGridView绑定数据源的方法

2022-03-01 14:18五维思考 C#

这篇文章主要为大家详细介绍了C# DataGridView绑定数据源的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

开始以前,先认识一下WinForm控件数据绑定的两种形式,简单数据绑定和复杂数据绑定。

1. 简单的数据绑定

例1

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["connStr"].ToString()))
{
 
  SqlDataAdapter sda = new SqlDataAdapter("Select * From T_Class Where F_Type='Product' order by F_RootID,F_Orders", conn);
  DataSet Ds = new DataSet();
  sda.Fill(Ds, "T_Class");
 
  //使用DataSet绑定时,必须同时指明DateMember
  this.dataGridView1.DataSource = Ds;
  this.dataGridView1.DataMember = "T_Class";
 
  //也可以直接用DataTable来绑定
  this.dataGridView1.DataSource = Ds.Tables["T_Class"];
}

简单的数据绑定是将用户控件的某一个属性绑定至某一个类型实例上的某一属性。

采用如下形式进行绑定:引用控件.DataBindings.Add("控件属性", 实例对象, "属性名", true);

例2

从数据库中把数据读出来放到一个数据集中,比如List<>、DataTable,DataSet,我一般用List<>,

然后绑定数据源:

?
1
2
IList<student> sList=StudentDB.GetAllList();
DataGridView.DataSource=sList;

如果你没有设置DataGridView的列,它会自动生成所有列。

2. 复杂数据绑定

复杂的数据绑定是将一个以列表为基础的用户控件(例如:ComboBox、ListBox、ErrorProvider、DataGridView等控件)绑定至一个数据对象的列表。

基本上,Windows Forms的复杂数据绑定允许绑定至支持IList接口的数据列表。此外,如果想通过一个BindingSource组件进行绑定,还可以绑定至一个支持IEnumerable接口的数据列表。

对于复杂数据绑定,常用的数据源类型有(代码以DataGridView作为示例控件)。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Collections;
 
namespace DataGridViewBindingData
{
 public partial class Form1 : Form
 {
  public Form1()
  {
    InitializeComponent();
  }
 
  private void button1_Click(object sender, EventArgs e)
  {
    //this.dataGridView1.DataSource = DataBindingByList1();
    //this.dataGridView1.DataSource = DataBindingByList2();
    //this.dataGridView1.DataSource = DataBindingByDataTable();
    this.dataGridView1.DataSource = DataBindingByBindingSource();
  }
 
  /// <summary>
  /// IList接口(包括一维数组,ArrayList等)
  /// </summary>
  /// <returns></returns>
  private ArrayList DataBindingByList1()
  {
    ArrayList Al = new ArrayList();
    Al.Add(new PersonInfo("a","-1"));
    Al.Add(new PersonInfo("b","-2"));
    Al.Add(new PersonInfo("c","-3"));
    return Al;
  }
 
  /// <summary>
  /// IList接口(包括一维数组,ArrayList等)
  /// </summary>
  /// <returns></returns>
  private ArrayList DataBindingByList2()
  {
    ArrayList list = new ArrayList();
    for (int i = 0; i < 10; i++)
    {
      list.Add(new DictionaryEntry(i.ToString(),i.ToString()+"_List"));
    }
    return list;
  }
 
  /// <summary>
  /// IListSource接口(DataTable、DataSet等)
  /// </summary>
  /// <returns></returns>
  private DataTable DataBindingByDataTable()
  {
    DataTable dt = new DataTable();
    DataColumn dc1 = new DataColumn("Name");
    DataColumn dc2 = new DataColumn("Value");
 
    dt.Columns.Add(dc1);
    dt.Columns.Add(dc2);
 
    for (int i = 1; i <= 10; i++)
    {
      DataRow dr = dt.NewRow();
      dr[0] = i;
      dr[1] = i.ToString() + "_DataTable";
      dt.Rows.Add(dr);
    }
 
    return dt;
  }
 
  /// <summary>
  /// IBindingListView接口(如BindingSource类)
  /// </summary>
  /// <returns></returns>
  private BindingSource DataBindingByBindingSource()
  {
    Dictionary<string, string> dic = new Dictionary<string, string>();
    for (int i = 0; i < 10; i++)
    {
      dic.Add(i.ToString(),i.ToString()+"_Dictionary");
    }
    return new BindingSource(dic,null);
  }
 }
}

上面代码中BindingSource的Datasource是一个结构类型DictionaryEntry,同样的DictionaryEntry并不能直接赋值给Combobox的DataSource,但通过BindingSource仍然可以间接实现。 这是因为:

BindingSource可以作为一个强类型的数据源。其数据源的类型通过以下机制之一固定。使用 Add 方法可将某项添加到 BindingSource 组件中。

将 DataSource 属性设置为一个列表、单个对象或类型。(这三者并不一定要实现IList或IListSource)

这两种机制都创建一个强类型列表。BindingSource 支持由其 DataSource 和 DataMember 属性指示的简单数据绑定和复杂数据绑定。 

总结:

根据DataSource绑定的对象的不同,可以有一下几种简单的绑定:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// DataSet 、DataTable
// 方式1
DataSet ds=new DataSet ();
this.dataGridView1.DataSource=ds.Table[0];
this.dataGridView1.DataSource = ds.Tables["表名"];
// 方式2
DataTable dt=new DataTable();
this.dataGridView1.DataSource=dt;
 
// DataView
DataView dv = new DataView();
this.dataGridView1.DataSource = dv;
 
// 设置了DataMember
DataSet ds=new DataSet ();
this.dataGridView1.DataSource = ds;
this.dataGridView1.DataMember = "表名";
 
// ArrayList
ArrayList Al = new ArrayList();
this.dataGridView1.DataSource = Al;
 
// dic
Dictionary<string, string> dic = new Dictionary<string, string>();
this.dataGridView1.DataSource = dic;
 
// List<Object>
this.dataGridVi.DataSource = new BindingList<Object>(List<Object>);

3. 实例

3.1 手动给dataGridView绑定数据源的方法

C#中手动给dataGridView绑定数据源,能够很自由地进行操作,但展示数据并没有C#自动添加数据源那么方便。可有时为了方便操作数据,我们更愿意手动连接数据源,代码如下:

?
1
2
3
4
5
6
7
8
9
conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Restaurant.mdb");//建立数据库连接
cmd = new OleDbCommand("select * from data", conn);//执行数据连接
DataSet ds = new DataSet();
OleDbDataAdapter da = new OleDbDataAdapter(cmd);
da.Fill(ds);
 
this.dataGridView1.DataSource = ds.Tables[0];//数据源
this.dataGridView1.AutoGenerateColumns = false;//不自动
conn.Close();//关闭数据库连接

说明:解决DataGridView绑定了数据源无法更新保存当前行的问题

?
1
2
this.dataGridView.currentCell=null;//该行的作用是取消datagridview行的编辑状态
adapter.Update(userTable);
 

3.2 利用泛型集合向DataGridView中添加数据

List<>泛型集合:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
private void Form1_Load(object sender, EventArgs e)
{
 //使用List<>泛型集合填充DataGridView
 List<Student> students = new List<Student>();
 Student hat = new Student("Hathaway", "12", "Male");
 Student peter = new Student("Peter","14","Male");
 Student dell = new Student("Dell","16","Male");
 Student anne = new Student("Anne","19","Female");
 students.Add(hat);
 students.Add(peter);
 students.Add(dell);
 students.Add(anne);
 this.dataGridView1.DataSource = students;
}

Dictionary<>泛型集合

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
private void Form1_Load(object sender, EventArgs e)
{
  //使用Dictionary<>泛型集合填充DataGridView
  Dictionary<String, Student> students = new Dictionary<String, Student>();
  Student hat = new Student("Hathaway", "12", "Male");
  Student peter = new Student("Peter","14","Male");
  Student dell = new Student("Dell","16","Male");
  Student anne = new Student("Anne","19","Female");
  students.Add(hat.StuName,hat);
  students.Add(peter.StuName,peter);
  students.Add(dell.StuName,dell);
  students.Add(anne.StuName,anne);
       //在这里必须创建一个BindIngSource对象,用该对象接收Dictionary<>泛型集合的对象
  BindingSource bs = new BindingSource();
       //将泛型集合对象的值赋给BindingSourc对象的数据源
  bs.DataSource = students.Values;
  this.dataGridView1.DataSource = bs;
}

3.3 利用SqlDataReader填充DataGridView

?
1
2
3
4
5
6
7
8
//使用SqlDataReader填充DataGridView
using (SqlCommand command = new SqlCommand("select * from product", DBService.Conn))
{
   SqlDataReader dr = command.ExecuteReader();
   BindingSource bs = new BindingSource();
   bs.DataSource = dr;
   this.dataGridView1.DataSource = bs;
}

3.4 利用SqlDataAdapter对象向DataGridView中添加数据

?
1
2
3
4
5
6
using (SqlDataAdapter da = new SqlDataAdapter("select * from Product", DBService.Conn))
{
   DataSet ds = new DataSet();
   da.Fill(ds);
   this.dataGridView1.DataSource = ds.Tables[0];
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://www.cnblogs.com/zhaoshujie/p/9679002.html

延伸 · 阅读

精彩推荐
  • C#C#微信公众号与订阅号接口开发示例代码

    C#微信公众号与订阅号接口开发示例代码

    这篇文章主要介绍了C#微信公众号与订阅号接口开发示例代码,结合实例形式简单分析了C#针对微信接口的调用与处理技巧,需要的朋友可以参考下...

    smartsmile20127762021-11-25
  • C#如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    这篇文章主要给大家介绍了关于如何使用C#将Tensorflow训练的.pb文件用在生产环境的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴...

    bbird201811792022-03-05
  • C#三十分钟快速掌握C# 6.0知识点

    三十分钟快速掌握C# 6.0知识点

    这篇文章主要介绍了C# 6.0的相关知识点,文中介绍的非常详细,通过这篇文字可以让大家在三十分钟内快速的掌握C# 6.0,需要的朋友可以参考借鉴,下面来...

    雨夜潇湘8272021-12-28
  • C#SQLite在C#中的安装与操作技巧

    SQLite在C#中的安装与操作技巧

    SQLite,是一款轻型的数据库,用于本地的数据储存。其优点有很多,下面通过本文给大家介绍SQLite在C#中的安装与操作技巧,感兴趣的的朋友参考下吧...

    蓝曈魅11162022-01-20
  • C#利用C#实现网络爬虫

    利用C#实现网络爬虫

    这篇文章主要介绍了利用C#实现网络爬虫,完整的介绍了C#实现网络爬虫详细过程,感兴趣的小伙伴们可以参考一下...

    C#教程网11852021-11-16
  • C#VS2012 程序打包部署图文详解

    VS2012 程序打包部署图文详解

    VS2012虽然没有集成打包工具,但它为我们提供了下载的端口,需要我们手动安装一个插件InstallShield。网上有很多第三方的打包工具,但为什么偏要使用微软...

    张信秀7712021-12-15
  • C#深入理解C#的数组

    深入理解C#的数组

    本篇文章主要介绍了C#的数组,数组是一种数据结构,详细的介绍了数组的声明和访问等,有兴趣的可以了解一下。...

    佳园9492021-12-10
  • C#C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    这篇文章主要介绍了C#设计模式之Strategy策略模式解决007大破密码危机问题,简单描述了策略模式的定义并结合加密解密算法实例分析了C#策略模式的具体使用...

    GhostRider10972022-01-21