为什么我的 中多了一行DataGrid
?
我的DataSource
有 15 行。
source.DataSource = dt;
MessageBox.Show(Convert.ToString(source.Count)); // shows 15
dataGrid1.ItemsSource = source;
MessageBox.Show(Convert.ToString(dataGrid1.Items.Count)); // shows 16
我的DataGrid
有 16 行,最后一行为空。
如何删除最后一行?