Implemented interface member:
11 references to Count
PresentationFramework (11)
System\Windows\Controls\DataGrid.cs (10)
4170(_selectedCells.Count > 1)) // There is more than one selected cell 4224if (((_pendingSelectedCells != null) && (_pendingSelectedCells.Count > 0)) || 4225((_pendingUnselectedCells != null) && (_pendingUnselectedCells.Count > 0))) 4231int currentSelectionCount = _selectedCells.Count; 4232int unselectedCellCount = (_pendingUnselectedCells != null) ? _pendingUnselectedCells.Count : 0; 4233int selectedCellCount = (_pendingSelectedCells != null) ? _pendingSelectedCells.Count : 0; 4354if (_selectedCells.Count > 0) 4541int numCells = cells.Count; 4932if (_selectedCells.Count > 0) 8199args.CanExecute = ClipboardCopyMode != DataGridClipboardCopyMode.None && _selectedCells.Count > 0;
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
382ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, Count);