WinForm中给DataGridView绑定datatable
程序员文章站
2022-06-08 15:54:16
...
//从数据库读出datatable放在addTenMinOilInfo 中,
DataTable addTenMinOilInfo = Invoice.Dal.DataGrid.GetDataGridView(tenMinAgo, now);
//绑定数据源
BindingSource bs = new BindingSource();
bs.DataSource = addTenMinOilInfo;
//给DataGridViewInputOil控件绑定数据源bs;
DataGridViewInputOil.DataSource = bs;
推荐阅读
-
WinForm 中 comboBox控件之数据绑定
-
一、winForm-DataGridView操作——控件绑定事件的两种方法
-
Winform中通过代码给PanelControl添加子控件并进行定位
-
给Winform中的TabControl添加更现代的拖拽功能
-
WinForm中DataGridView的使用
-
WinForm DataGridView双向数据绑定
-
JS中批量给元素绑定事件过程中的相关问题使用闭包解决
-
Winform中对ZedGraph的RadioGroup进行数据源绑定,即通过代码添加选项
-
WinForm中DataGridView的TextBoxColumm换行
-
WinForm中DataGridView复制选中单元格内容解决方案