3 instantiations of CellAutomationValueHolder
PresentationFramework (3)
src\Framework\System\Windows\Controls\DataGrid.cs (3)
6757(cell != null) ? new CellAutomationValueHolder(cell) 6758: new CellAutomationValueHolder(item, column); 6825_editingCellAutomationValueHolders.Add(cell.Column, new CellAutomationValueHolder(cell));
11 references to CellAutomationValueHolder
PresentationFramework (11)
src\Framework\System\Windows\Controls\DataGrid.cs (11)
6748private CellAutomationValueHolder GetCellAutomationValueHolder(object item, DataGridColumn column) 6750CellAutomationValueHolder cellAutomationValueHolder; 6766CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6772CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6806CellAutomationValueHolder holder; 6832CellAutomationValueHolder holder; 6843foreach (KeyValuePair<DataGridColumn, CellAutomationValueHolder> kvp in _editingCellAutomationValueHolders) 7014private static DependencyProperty CellContentProperty = DependencyProperty.RegisterAttached("CellContent", typeof(string), typeof(CellAutomationValueHolder)); 7015private static DependencyProperty CellClipboardProperty = DependencyProperty.RegisterAttached("CellClipboard", typeof(object), typeof(CellAutomationValueHolder)); 8703private Dictionary<DataGridColumn, CellAutomationValueHolder> _editingCellAutomationValueHolders 8704= new Dictionary<DataGridColumn, CellAutomationValueHolder>(); // Holds the content of edited cells. Required for raising Automation events.