3 instantiations of CellAutomationValueHolder
PresentationFramework (3)
System\Windows\Controls\DataGrid.cs (3)
6707(cell != null) ? new CellAutomationValueHolder(cell) 6708: new CellAutomationValueHolder(item, column); 6775_editingCellAutomationValueHolders.Add(cell.Column, new CellAutomationValueHolder(cell));
11 references to CellAutomationValueHolder
PresentationFramework (11)
System\Windows\Controls\DataGrid.cs (11)
6698private CellAutomationValueHolder GetCellAutomationValueHolder(object item, DataGridColumn column) 6700CellAutomationValueHolder cellAutomationValueHolder; 6716CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6722CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6756CellAutomationValueHolder holder; 6782CellAutomationValueHolder holder; 6793foreach (KeyValuePair<DataGridColumn, CellAutomationValueHolder> kvp in _editingCellAutomationValueHolders) 6968private static DependencyProperty CellContentProperty = DependencyProperty.RegisterAttached("CellContent", typeof(string), typeof(CellAutomationValueHolder)); 6969private static DependencyProperty CellClipboardProperty = DependencyProperty.RegisterAttached("CellClipboard", typeof(object), typeof(CellAutomationValueHolder)); 8629private Dictionary<DataGridColumn, CellAutomationValueHolder> _editingCellAutomationValueHolders 8630= new Dictionary<DataGridColumn, CellAutomationValueHolder>(); // Holds the content of edited cells. Required for raising Automation events.