3 writes to IsEditing
PresentationFramework (3)
System\Windows\Controls\DataGrid.cs (2)
2271cell.RowOwner.IsEditing = true; 3732cell.RowOwner.IsEditing = false;
System\Windows\Controls\DataGridRow.cs (1)
462IsEditing = false;
6 references to IsEditing
PresentationFramework (6)
System\Windows\Controls\DataGrid.cs (2)
2403if (!cell.RowOwner.IsEditing) 2564if (!cell.RowOwner.IsEditing)
System\Windows\Controls\DataGridRow.cs (3)
212if (IsSelected || IsEditing) // this is slightly different than SL because they assume if it's editing it will be selected. 216if (IsEditing) 459if (IsEditing)
System\Windows\Controls\Primitives\DataGridRowHeader.cs (1)
429return row.IsEditing;