举一个实例,c# 使用gridcontrol 显示datatable 中的数据
时间: 2024-02-01 15:15:27 浏览: 233
C#中运用datagridview的实例
5星 · 资源好评率100%
可以通过以下步骤在 C# 中使用 GridControl 显示 DataTable 中的数据:
1. 在 Visual Studio 中创建一个 Windows 窗体应用程序,并在窗体上添加一个 GridControl 控件。
2. 创建一个 DataTable 对象,并向其中添加数据。例如:
```
DataTable dt = new DataTable();
dt.Columns.Add("Name", typeof(string));
dt.Columns.Add("Age", typeof(int));
dt.Rows.Add("John", 30);
dt.Rows.Add("Mary", 25);
```
3. 将 DataTable 对象绑定到 GridControl 控件上。例如:
```
gridControl1.DataSource = dt;
```
4. 运行应用程序,即可在 GridControl 控件中看到 DataTable 中的数据。
阅读全文