3 instantiations of CellAutomationValueHolder
PresentationFramework (3)
System\Windows\Controls\DataGrid.cs (3)
6708(cell != null) ? new CellAutomationValueHolder(cell) 6709: new CellAutomationValueHolder(item, column); 6776_editingCellAutomationValueHolders.Add(cell.Column, new CellAutomationValueHolder(cell));
11 references to CellAutomationValueHolder
PresentationFramework (11)
System\Windows\Controls\DataGrid.cs (11)
6699private CellAutomationValueHolder GetCellAutomationValueHolder(object item, DataGridColumn column) 6701CellAutomationValueHolder cellAutomationValueHolder; 6717CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6723CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6757CellAutomationValueHolder holder; 6783CellAutomationValueHolder holder; 6794foreach (KeyValuePair<DataGridColumn, CellAutomationValueHolder> kvp in _editingCellAutomationValueHolders) 6969private static DependencyProperty CellContentProperty = DependencyProperty.RegisterAttached("CellContent", typeof(string), typeof(CellAutomationValueHolder)); 6970private static DependencyProperty CellClipboardProperty = DependencyProperty.RegisterAttached("CellClipboard", typeof(object), typeof(CellAutomationValueHolder)); 8630private Dictionary<DataGridColumn, CellAutomationValueHolder> _editingCellAutomationValueHolders 8631= new Dictionary<DataGridColumn, CellAutomationValueHolder>(); // Holds the content of edited cells. Required for raising Automation events.