Implemented interface member:
11 references to Count
PresentationFramework (11)
System\Windows\Controls\DataGrid.cs (10)
4183
(_selectedCells.
Count
> 1)) // There is more than one selected cell
4237
if (((_pendingSelectedCells != null) && (_pendingSelectedCells.
Count
> 0)) ||
4238
((_pendingUnselectedCells != null) && (_pendingUnselectedCells.
Count
> 0)))
4244
int currentSelectionCount = _selectedCells.
Count
;
4245
int unselectedCellCount = (_pendingUnselectedCells != null) ? _pendingUnselectedCells.
Count
: 0;
4246
int selectedCellCount = (_pendingSelectedCells != null) ? _pendingSelectedCells.
Count
: 0;
4367
if (_selectedCells.
Count
> 0)
4554
int numCells = cells.
Count
;
4945
if (_selectedCells.
Count
> 0)
8212
args.CanExecute = ClipboardCopyMode != DataGridClipboardCopyMode.None && _selectedCells.
Count
> 0;
System\Windows\Controls\VirtualizedCellInfoCollection.cs (1)
383
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
Count
);