3 instantiations of CellAutomationValueHolder
PresentationFramework (3)
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.