3 instantiations of CellAutomationValueHolder
PresentationFramework (3)
System\Windows\Controls\DataGrid.cs (3)
6701(cell != null) ? new CellAutomationValueHolder(cell) 6702: new CellAutomationValueHolder(item, column); 6769_editingCellAutomationValueHolders.Add(cell.Column, new CellAutomationValueHolder(cell));
11 references to CellAutomationValueHolder
PresentationFramework (11)
System\Windows\Controls\DataGrid.cs (11)
6692private CellAutomationValueHolder GetCellAutomationValueHolder(object item, DataGridColumn column) 6694CellAutomationValueHolder cellAutomationValueHolder; 6710CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6716CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column); 6750CellAutomationValueHolder holder; 6776CellAutomationValueHolder holder; 6787foreach (KeyValuePair<DataGridColumn, CellAutomationValueHolder> kvp in _editingCellAutomationValueHolders) 6962private static DependencyProperty CellContentProperty = DependencyProperty.RegisterAttached("CellContent", typeof(string), typeof(CellAutomationValueHolder)); 6963private static DependencyProperty CellClipboardProperty = DependencyProperty.RegisterAttached("CellClipboard", typeof(object), typeof(CellAutomationValueHolder)); 8623private Dictionary<DataGridColumn, CellAutomationValueHolder> _editingCellAutomationValueHolders 8624= new Dictionary<DataGridColumn, CellAutomationValueHolder>(); // Holds the content of edited cells. Required for raising Automation events.