14 references to TotalCount
PresentationFramework (14)
src\Framework\MS\Internal\Navigation\JournalEntryStack.cs (1)
118
while ((_next >= 0) && (_next < _journal.
TotalCount
))
src\Framework\System\Windows\Navigation\Journal.cs (10)
147
if (_currentEntryIndex >= 0 && _currentEntryIndex <
TotalCount
)
301
if (_currentEntryIndex > -1 && _currentEntryIndex <
TotalCount
)
349
if (_currentEntryIndex >=
TotalCount
)
460
for (int i = 0; i <
TotalCount
; i++)
480
for (int i =
TotalCount
- 1; i >= 0; --i)
508
Debug.Assert(index <
TotalCount
&& index >= 0, "Invalid index passed to RemoveEntryInternal");
533
for (int i =
TotalCount
- 1; i >= 0; i--)
605
if (index >=
TotalCount
)
628
return _currentEntryIndex >= 0 && _currentEntryIndex <=
TotalCount
629
&& _uncommittedCurrentIndex >= 0 && _uncommittedCurrentIndex <=
TotalCount
;
src\Framework\System\Windows\Navigation\NavigationService.cs (3)
4060
if (parentIndex != _noParentPage && parentIndex < journal.
TotalCount
&& !IsDisposed)
4075
if (parentIndex < journal.
TotalCount
)
4154
while (journalEntryIndex < journal.
TotalCount
)