3 writes to IsEditing
PresentationFramework (3)
System\Windows\Controls\DataGrid.cs (2)
2259
cell.RowOwner.
IsEditing
= true;
3705
cell.RowOwner.
IsEditing
= false;
System\Windows\Controls\DataGridRow.cs (1)
457
IsEditing
= false;
6 references to IsEditing
PresentationFramework (6)
System\Windows\Controls\DataGrid.cs (2)
2391
if (!cell.RowOwner.
IsEditing
)
2543
if (!cell.RowOwner.
IsEditing
)
System\Windows\Controls\DataGridRow.cs (3)
207
if (IsSelected ||
IsEditing
) // this is slightly different than SL because they assume if it's editing it will be selected.
211
if (
IsEditing
)
454
if (
IsEditing
)
System\Windows\Controls\Primitives\DataGridRowHeader.cs (1)
423
return row.
IsEditing
;