1 write to _journal
PresentationFramework (1)
MS\Internal\AppModel\JournalNavigationScope.cs (1)
423
_journal
= value;
22 references to _journal
PresentationFramework (22)
MS\Internal\AppModel\JournalNavigationScope.cs (22)
170
return
_journal
!= null && !InAppShutdown &&
_journal
.CanGoForward;
178
return
_journal
!= null && !InAppShutdown &&
_journal
.CanGoBack;
232
return
_journal
== null ? null :
_journal
.RemoveBackEntry();
284
if (
_journal
== null)
287
int realIndex =
_journal
.FindIndexForEntryWithId(entryId);
291
JournalEntry entry =
_journal
[realIndex];
293
return
_journal
.IsNavigable(entry);
336
if (
_journal
!= null)
338
_journal
.AbortJournalNavigation();
412
if (
_journal
== null)
416
return
_journal
;
421
Debug.Assert(
_journal
== null && value != null,
424
_journal
.Filter = new JournalEntryFilter(this.IsEntryNavigable);
425
_journal
.BackForwardStateChange += new EventHandler(OnBackForwardStateChange);
428
navigator.SetValue(BackStackPropertyKey,
_journal
.BackStack);
429
navigator.SetValue(ForwardStackPropertyKey,
_journal
.ForwardStack);
456
Debug.Assert(sender ==
_journal
);
461
bool newState =
_journal
.CanGoBack;
467
newState =
_journal
.CanGoForward;