Implemented interface member:
property
Count
System.Collections.Generic.ICollection<T>.Count
11 references to Count
PresentationFramework (11)
src\Framework\System\Windows\Controls\DataGrid.cs (10)
4217(_selectedCells.Count > 1)) // There is more than one selected cell 4271if (((_pendingSelectedCells != null) && (_pendingSelectedCells.Count > 0)) || 4272((_pendingUnselectedCells != null) && (_pendingUnselectedCells.Count > 0))) 4278int currentSelectionCount = _selectedCells.Count; 4279int unselectedCellCount = (_pendingUnselectedCells != null) ? _pendingUnselectedCells.Count : 0; 4280int selectedCellCount = (_pendingSelectedCells != null) ? _pendingSelectedCells.Count : 0; 4404if (_selectedCells.Count > 0) 4594int numCells = cells.Count; 4991if (_selectedCells.Count > 0) 8264args.CanExecute = ClipboardCopyMode != DataGridClipboardCopyMode.None && _selectedCells.Count > 0;
src\Framework\System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
387if ((index >= 0) && (index < Count))