1 write to _journal
PresentationFramework (1)
MS\Internal\AppModel\JournalNavigationScope.cs (1)
420_journal = value;
22 references to _journal
PresentationFramework (22)
MS\Internal\AppModel\JournalNavigationScope.cs (22)
167return _journal != null && !InAppShutdown && _journal.CanGoForward; 175return _journal != null && !InAppShutdown && _journal.CanGoBack; 229return _journal == null ? null : _journal.RemoveBackEntry(); 281if (_journal == null) 284int realIndex = _journal.FindIndexForEntryWithId(entryId); 288JournalEntry entry = _journal[realIndex]; 290return _journal.IsNavigable(entry); 333if (_journal != null) 335_journal.AbortJournalNavigation(); 409if (_journal == null) 413return _journal; 418Debug.Assert(_journal == null && value != null, 421_journal.Filter = new JournalEntryFilter(this.IsEntryNavigable); 422_journal.BackForwardStateChange += new EventHandler(OnBackForwardStateChange); 425navigator.SetValue(BackStackPropertyKey, _journal.BackStack); 426navigator.SetValue(ForwardStackPropertyKey, _journal.ForwardStack); 453Debug.Assert(sender == _journal); 458bool newState = _journal.CanGoBack; 464newState = _journal.CanGoForward;