我有一个绑定到数据库表的DataGridView。 Visual Studio创建了网格和绑定导航器Toolstrip。导航,插入,删除工作正常...... 但: 如果我通过单击某个列标题对网格进行排序,则插入行会弄乱网格。传递给RowsAdded事件处理程序的行索引是错误的。它始终是最后一行的索引,在未分类模式之前很好。在排序模式下,我正在编辑错误的行,看不到找到正确行的索引。 即使索引始终是最后一行,也会正确显示所有数据绑定列。没有数据绑定列会出现问题。在我的例子中,一个图像列取决于数据绑定列。图像始终绘制在最后一行。因此忽略排序......
以下是我在RowsAdded事件处理程序中所做的事情:
for (int i = 0; i < e.RowCount; ++i)
{
DataGridViewRow row = dataGridView_Energietraeger.Rows[i + e.RowIndex];
object idObj = row.Cells[Column_Id.Index].Value;
if (idObj is System.DBNull || idObj == null)
{
// set default values to all cells in new row...
// set icon indicating ro/ rw mode - wrong row when sorted!
row.ReadOnly = (bool)readonlyObj;
SetIconCellImage(row);
}
else
{
object readonlyObj = row.Cells[Column_Readonly.Index].Value;
if (!(readonlyObj is System.DBNull) && readonlyObj != null)
{
row.ReadOnly = (bool)readonlyObj;
SetIconCellImage(row); //
}
}
}
任何提示? 可能是我没有理解数据绑定的逻辑以及如何访问行和数据源。但我还没看到我的错误。提前致谢... 霍尔格