7 references to TryFindCell
PresentationFramework (7)
src\Framework\System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (1)
833return (dataGrid != null) ? dataGrid.TryFindCell(Item, _column) : null;
src\Framework\System\Windows\Automation\Peers\DataGridItemAutomationPeer.cs (1)
245DataGridCell cell = this.OwningDataGrid.TryFindCell(item, this.OwningDataGrid.Columns[0]);
src\Framework\System\Windows\Controls\DataGrid.cs (5)
5959DataGridCell realNewCell = TryFindCell(newCell.RowDataItem, newCell.Column); 5966realNewCell = TryFindCell(newCell.RowDataItem, newCell.Column); 6755DataGridCell cell = TryFindCell(item, column); 6789CurrentCellContainer = TryFindCell(item, column); 6794CurrentCellContainer = TryFindCell(item, column);