3 instantiations of CellAutomationValueHolder
PresentationFramework (3)
System\Windows\Controls\DataGrid.cs (3)
6695(cell != null) ? new CellAutomationValueHolder(cell) 6696: new CellAutomationValueHolder(item, column); 6763_editingCellAutomationValueHolders.Add(cell.Column, new CellAutomationValueHolder(cell));
11 references to CellAutomationValueHolder
PresentationFramework (11)
System\Windows\Controls\DataGrid.cs (11)
6686private CellAutomationValueHolder GetCellAutomationValueHolder(object item, DataGridColumn column) 6688CellAutomationValueHolder cellAutomationValueHolder; 6704CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6710CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6744CellAutomationValueHolder holder; 6770CellAutomationValueHolder holder; 6781foreach (KeyValuePair<DataGridColumn, CellAutomationValueHolder> kvp in _editingCellAutomationValueHolders) 6956private static DependencyProperty CellContentProperty = DependencyProperty.RegisterAttached("CellContent", typeof(string), typeof(CellAutomationValueHolder)); 6957private static DependencyProperty CellClipboardProperty = DependencyProperty.RegisterAttached("CellClipboard", typeof(object), typeof(CellAutomationValueHolder)); 8617private Dictionary<DataGridColumn, CellAutomationValueHolder> _editingCellAutomationValueHolders 8618= new Dictionary<DataGridColumn, CellAutomationValueHolder>(); // Holds the content of edited cells. Required for raising Automation events.