我有一个datagridview(dgv),我从记录集填充。
for root, dirs, files in os.walk(r"Y:\Data\MXD_DC\DataSourceChange", topdown=True):
if os.path.basename(root) == 'Oracle':
for filename in files:
fullpath = os.path.join(root, filename)
print "FullPath is: " + fullpath
好吧没问题,但是当我重新填充DGV时
我做以下
dgvMatchErrors.DataSource = dsTest.Tables[0];
messagebox.show(dgvMatcherrors.rows) (shows 20)
运行查询以再次填充
dgvMatchErrors = new DataGridView();
dgvMatchErrors.DataSource = null;
dgvMatchErrors.Rows.Clear();
dgvMatchErrors.Refresh();
) 但数据仍在网格中,但没有行。 ????????????????