3 instantiations of CellAutomationValueHolder
PresentationFramework (3)
11 references to CellAutomationValueHolder
PresentationFramework (11)
System\Windows\Controls\DataGrid.cs (11)
6743private CellAutomationValueHolder GetCellAutomationValueHolder(object item, DataGridColumn column)
6745CellAutomationValueHolder cellAutomationValueHolder;
6761CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column);
6767CellAutomationValueHolder cellAutomationValueHolder = GetCellAutomationValueHolder(item, column);
6801CellAutomationValueHolder holder;
6827CellAutomationValueHolder holder;
6838foreach (KeyValuePair<DataGridColumn, CellAutomationValueHolder> kvp in _editingCellAutomationValueHolders)
7012private static DependencyProperty CellContentProperty = DependencyProperty.RegisterAttached("CellContent", typeof(string), typeof(CellAutomationValueHolder));
7013private static DependencyProperty CellClipboardProperty = DependencyProperty.RegisterAttached("CellClipboard", typeof(object), typeof(CellAutomationValueHolder));
8676private Dictionary<DataGridColumn, CellAutomationValueHolder> _editingCellAutomationValueHolders
8677= new Dictionary<DataGridColumn, CellAutomationValueHolder>(); // Holds the content of edited cells. Required for raising Automation events.