1 write to _journal
PresentationFramework (1)
src\Framework\MS\Internal\AppModel\JournalNavigationScope.cs (1)
446
_journal
= value;
22 references to _journal
PresentationFramework (22)
src\Framework\MS\Internal\AppModel\JournalNavigationScope.cs (22)
175
return
_journal
!= null && !InAppShutdown &&
_journal
.CanGoForward;
183
return
_journal
!= null && !InAppShutdown &&
_journal
.CanGoBack;
250
return
_journal
== null ? null :
_journal
.RemoveBackEntry();
302
if (
_journal
== null)
305
int realIndex =
_journal
.FindIndexForEntryWithId(entryId);
309
JournalEntry entry =
_journal
[realIndex];
311
return
_journal
.IsNavigable(entry);
359
if (
_journal
!= null)
361
_journal
.AbortJournalNavigation();
435
if (
_journal
== null)
439
return
_journal
;
444
Debug.Assert(
_journal
== null && value != null,
447
_journal
.Filter = new JournalEntryFilter(this.IsEntryNavigable);
448
_journal
.BackForwardStateChange += new EventHandler(OnBackForwardStateChange);
451
navigator.SetValue(BackStackPropertyKey,
_journal
.BackStack);
452
navigator.SetValue(ForwardStackPropertyKey,
_journal
.ForwardStack);
479
Debug.Assert(sender ==
_journal
);
484
bool newState =
_journal
.CanGoBack;
490
newState =
_journal
.CanGoForward;