15 references to TotalCount
PresentationFramework (15)
MS\Internal\AppModel\JournalNavigationScope.cs (1)
357
for (int i = 0; i < journal.
TotalCount
; i++)
MS\Internal\Navigation\JournalEntryStack.cs (1)
111
while ((_next >= 0) && (_next < _journal.
TotalCount
))
System\Windows\Navigation\Journal.cs (10)
124
if (_currentEntryIndex >= 0 && _currentEntryIndex <
TotalCount
)
275
if (_currentEntryIndex > -1 && _currentEntryIndex <
TotalCount
)
323
if (_currentEntryIndex >=
TotalCount
)
434
for (int i = 0; i <
TotalCount
; i++)
455
for (int i =
TotalCount
- 1; i >= 0; --i)
478
Debug.Assert(index <
TotalCount
&& index >= 0, "Invalid index passed to RemoveEntryInternal");
503
for (int i =
TotalCount
- 1; i >= 0; i--)
575
if (index >=
TotalCount
)
598
return _currentEntryIndex >= 0 && _currentEntryIndex <=
TotalCount
599
&& _uncommittedCurrentIndex >= 0 && _uncommittedCurrentIndex <=
TotalCount
;
System\Windows\Navigation\NavigationService.cs (3)
3716
if (parentIndex != _noParentPage && parentIndex < journal.
TotalCount
&& !IsDisposed)
3730
if (parentIndex < journal.
TotalCount
)
3809
while (journalEntryIndex < journal.
TotalCount
)