我有一个 WinForms 应用程序,我试图让 DataGridView 在运行时填充。在我拥有的表单的 initializeComponent 代码下:
_BackEndDataSet DS = new _BackEndDataSet();
DataView theDataView = new DataView(DS.Tables["CLIENTS"]);
dataGridViewClients.AutoGenerateColumns = true;
dataGridViewClients.DataSource = theDataView;
其中 _BackEndDataSet 是数据集,而 CLIENTS 是我想查看的表。
表的列显示但没有数据。
有任何想法吗?