DataGridRow.IsEditing永远不会返回true

时间:2014-11-24 10:39:55

标签: c# wpf datagrid

假设我的DataGrid中有5列和5行。现在我想在编辑模式下获取currentRow的所有单元格。我成功地做到了。现在我想禁用除单元格正在编辑的行之外的所有行。但是在下面的代码中r.IsEditing永远不会返回true。有人可以解释我为什么????

for (int column = 0; column <= dg.Columns.Count - 1; column++)
{
    if (!(GetDataGridCell(new DataGridCellInfo(dg.Items[rowIndex], dg.Columns[column])).IsReadOnly))
    {
        GetDataGridCell(new DataGridCellInfo(dg.Items[rowIndex], dg.Columns[column])).IsEditing = true;
    }
}

foreach (DataGridRow r in rows)
{
    if (!(r.IsEditing))
    {
        r.IsEnabled = false;
    }
}

1 个答案:

答案 0 :(得分:0)

这有点棘手。我需要在代码中添加以下行以使其正常工作:

dg.CurrentCell = new DataGridCellInfo(dg.Items[rowIndex], dg.Columns[0]);
dg.BeginEdit();

所以,现在我的完整代码如下:

dg.CurrentCell = new DataGridCellInfo(dg.Items[rowIndex], dg.Columns[0]);
dg.BeginEdit();

for (int column = 0; column <= dg.Columns.Count - 1; column++)
{
    if (!(GetDataGridCell(new DataGridCellInfo(dg.Items[rowIndex], dg.Columns[column])).IsReadOnly))
    {
        GetDataGridCell(new DataGridCellInfo(dg.Items[rowIndex], dg.Columns[column])).IsEditing = true;
    }
}

foreach (DataGridRow r in rows)
{
    if (!(r.IsEditing))
    {
        r.IsEnabled = false;
    }
}