5 writes to IsEditing
PresentationFramework (4)
src\Framework\System\Windows\Controls\DataGridCell.cs (4)
112IsEditing = false; 581IsEditing = true; 604IsEditing = false; 622IsEditing = false;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (1)
442cell.IsEditing = true;
40 references to IsEditing
PresentationFramework (30)
src\Framework\System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (1)
608if (!cell.IsEditing)
src\Framework\System\Windows\Controls\DataGrid.cs (15)
2135if ((cell != null) && !cell.IsReadOnly && !cell.IsEditing) 2325return cellContainer.IsEditing || 2358if (cell.IsEditing) 2531if (cell.IsEditing) 2603((_currentCellContainer == null) || !_currentCellContainer.IsEditing); // Not editing a cell 2923else if (dataGrid._currentCellContainer.IsEditing) 3062return cell.IsEditing; 3192if (!cellContainer.IsEditing && 3213return cellContainer.IsEditing; 3248if (currentCell != null && currentCell == cell && currentCell.IsEditing) 3343cellLeftEditingMode = !cellContainer.IsEditing; 4787if (_currentCellContainer != null && _currentCellContainer.IsEditing) 5590bool wasEditing = currentCellContainer.IsEditing; 5923bool wasEditing = currentCellContainer.IsEditing; 6067if (wasEditing && !newCell.IsEditing && (oldCell.RowDataItem == newCell.RowDataItem))
src\Framework\System\Windows\Controls\DataGridBoundColumn.cs (1)
218bool isCellEditing = cell.IsEditing;
src\Framework\System\Windows\Controls\DataGridCell.cs (7)
108if (IsEditing) 359if (IsEditing) 393FrameworkElement newContent = column.BuildVisualTree(IsEditing, RowDataItem, this); 579Debug.Assert(!IsEditing, "Should not call BeginEdit when IsEditing is true."); 595Debug.Assert(IsEditing, "Should not call CancelEdit when IsEditing is false."); 609Debug.Assert(IsEditing, "Should not call CommitEdit when IsEditing is false."); 913if (!IsEditing && !IsReadOnly)
src\Framework\System\Windows\Controls\DataGridCellsPanel.cs (1)
1084if ((cell != null && (cell.IsEditing || cell.IsKeyboardFocusWithin || cell == parentDataGrid.FocusedCell)) ||
src\Framework\System\Windows\Controls\DataGridComboBoxColumn.cs (1)
417bool isCellEditing = cell.IsEditing;
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (2)
117if (cell != null && !cell.IsEditing) 293if (cell != null && !cell.IsEditing)
src\Framework\System\Windows\Controls\DataGridTemplateColumn.cs (1)
213bool isCellEditing = cell.IsEditing;
src\Framework\System\Windows\Controls\DataGridTextColumn.cs (1)
271if (cell != null && !cell.IsEditing)
System.Activities.Presentation (10)
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (2)
434key = resolveParams.Cell.IsEditing ? "argumentPropertyEditableTemplate" : "argumentPropertyReadOnlyTemplate"; 438key = resolveParams.Cell.IsEditing ? "argumentExpressionEditableTemplate" : "argumentExpressionReadOnlyTemplate";
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (5)
240isCurrentCellEditing = cell.IsEditing; 682if (null != cell && !cell.IsEditing && !cell.IsReadOnly && null != this.dataGrid.SelectedItem) 708if (cell.Focus() && !cell.IsEditing) 738if (null != cell && cell.IsEditing) 899if (GetIsCustomEditor(dataGridCell) && (dataGridCell.IsEditing))
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (3)
138bool shouldReselct = cell.IsEditing; 154this.continueScopeEdit = cell.IsEditing; 526string key = resolveParams.Cell.IsEditing ? "variableExpressionEditableTemplate" : "variableExpressionReadonlyTemplate";