3 instantiations of CellAutomationValueHolder
PresentationFramework (3)
11 references to CellAutomationValueHolder
PresentationFramework (11)
System\Windows\Controls\DataGrid.cs (11)
6740private CellAutomationValueHolder GetCellAutomationValueHolder(object item, DataGridColumn column)
6742CellAutomationValueHolder cellAutomationValueHolder;
6758CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column);
6764CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column);
6798CellAutomationValueHolder holder;
6824CellAutomationValueHolder holder;
6835foreach (KeyValuePair<DataGridColumn, CellAutomationValueHolder> kvp in _editingCellAutomationValueHolders)
7009private static DependencyProperty CellContentProperty = DependencyProperty.RegisterAttached("CellContent", typeof(string), typeof(CellAutomationValueHolder));
7010private static DependencyProperty CellClipboardProperty = DependencyProperty.RegisterAttached("CellClipboard", typeof(object), typeof(CellAutomationValueHolder));
8673private Dictionary<DataGridColumn, CellAutomationValueHolder> _editingCellAutomationValueHolders
8674= new Dictionary<DataGridColumn, CellAutomationValueHolder>(); // Holds the content of edited cells. Required for raising Automation events.