3 types derived from JournalEntry
PresentationFramework (3)
src\Framework\MS\Internal\AppModel\Journaling.cs (3)
154
internal class JournalEntryUri :
JournalEntry
, ISerializable
195
internal class JournalEntryKeepAlive :
JournalEntry
259
internal abstract class JournalEntryPageFunction :
JournalEntry
, ISerializable
80 references to JournalEntry
PresentationFramework (80)
src\Framework\MS\Internal\AppModel\ApplicationProxyInternal.cs (2)
552
JournalEntry
entry;
737
JournalEntry
entry = null;
src\Framework\MS\Internal\AppModel\INavigator.cs (1)
274
JournalEntry
RemoveBackEntry();
src\Framework\MS\Internal\AppModel\Journaling.cs (3)
131
internal
JournalEntry
GroupExitEntry
145
private
JournalEntry
_groupExitEntry;
364
JournalEntry
journalEntry;
src\Framework\MS\Internal\AppModel\JournalNavigationScope.cs (7)
203
JournalEntry
je = Journal.BeginForwardNavigation();
230
JournalEntry
je = Journal.BeginBackNavigation();
247
public
JournalEntry
RemoveBackEntry()
309
JournalEntry
entry = _journal[realIndex];
321
JournalEntry
entry = Journal[index];
325
internal bool NavigateToEntry(
JournalEntry
entry)
507
private bool IsEntryNavigable(
JournalEntry
entry)
src\Framework\MS\Internal\Navigation\JournalEntryStack.cs (1)
153
JournalEntry
_current;
src\Framework\System\Windows\Controls\Frame.cs (4)
683
JournalEntry
je = journalEntryUIElem.DataContext as
JournalEntry
;
881
public
JournalEntry
RemoveBackEntry()
1218
internal
JournalEntry
JournalEntry;
src\Framework\System\Windows\Controls\Page.cs (3)
425
JournalEntry
.KeepAliveProperty.AddOwner(typeof(Page));
434
return
JournalEntry
.GetKeepAlive(this);
439
JournalEntry
.SetKeepAlive(this, value);
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
424
case 332: t = () => typeof(
JournalEntry
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5919
typeof(System.Windows.Navigation.
JournalEntry
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5876
case KnownElements.JournalEntry: t = typeof(System.Windows.Navigation.
JournalEntry
); break;
src\Framework\System\Windows\Navigation\Journal.cs (25)
83
_journalEntryList = (List<
JournalEntry
>)info.GetValue("_journalEntryList", typeof(List<
JournalEntry
>));
109
internal
JournalEntry
this[int index]
143
internal
JournalEntry
CurrentEntry
269
internal
JournalEntry
RemoveBackEntry()
280
JournalEntry
removedEntry = RemoveEntryInternal(index);
291
internal void UpdateCurrentEntry(
JournalEntry
journalEntry)
305
JournalEntry
oldEntry = _journalEntryList[_currentEntryIndex];
360
internal void CommitJournalNavigation(
JournalEntry
navigated)
375
internal
JournalEntry
BeginBackNavigation()
380
JournalEntry
journalEntry = GetGoBackEntry(out index);
390
internal
JournalEntry
BeginForwardNavigation()
421
internal NavigationMode GetNavigationMode(
JournalEntry
entry)
439
internal void NavigateTo(
JournalEntry
target)
482
JournalEntry
je = _journalEntryList[i];
506
internal
JournalEntry
RemoveEntryInternal(int index)
512
JournalEntry
theEntry = _journalEntryList[index];
540
JournalEntry
entry = _journalEntryList[i];
564
internal
JournalEntry
GetGoBackEntry(out int index)
568
JournalEntry
je = _journalEntryList[index];
576
internal
JournalEntry
GetGoBackEntry()
638
internal bool IsNavigable(
JournalEntry
entry)
684
private List<
JournalEntry
> _journalEntryList = new List<
JournalEntry
>();
707
internal delegate bool JournalEntryFilter(
JournalEntry
entry);
src\Framework\System\Windows\Navigation\JournalEntry.cs (4)
201
/// <seealso cref="
JournalEntry
.KeepAliveProperty" />
218
/// <seealso cref="
JournalEntry
.KeepAliveProperty" />
267
DependencyProperty.RegisterAttached("Name", typeof(string), typeof(
JournalEntry
), new PropertyMetadata(String.Empty));
273
DependencyProperty.RegisterAttached("KeepAlive", typeof(bool), typeof(
JournalEntry
), new PropertyMetadata(false));
src\Framework\System\Windows\Navigation\JournalEntryListConverter.cs (3)
170
foreach (
JournalEntry
o in _forwardStack)
177
current.SetValue(
JournalEntry
.NameProperty, SR.Get(SRID.NavWindowMenuCurrentPage));
182
foreach (
JournalEntry
o in _backStack)
src\Framework\System\Windows\Navigation\NavigationService.cs (21)
287
JournalEntry
destinationEntry = null;
870
keepAlive =
JournalEntry
.GetKeepAlive(o);
1600
JournalEntry
je = UpdateJournal(NavigationMode.New, JournalReason.AddBackEntry, null);
1622
public
JournalEntry
RemoveBackEntry()
2461
JournalEntry
je = navInfo.JournalEntry;
2832
JournalEntry
je = _journalScope.Journal.CurrentEntry;
3342
private
JournalEntry
UpdateJournal(
3343
NavigationMode navigationMode, JournalReason journalReason,
JournalEntry
destinationJournalEntry)
3353
JournalEntry
journalEntry = null;
3426
internal
JournalEntry
MakeJournalEntry(JournalReason journalReason)
3440
JournalEntry
journalEntry;
3565
name = (string)dependencyObject.GetValue(
JournalEntry
.NameProperty);
3594
name = String.Format(CultureInfo.CurrentCulture, "{0} ({1})", navWin.Title,
JournalEntry
.GetDisplayName(_currentSource, SiteOfOriginContainer.SiteOfOrigin));
3606
name =
JournalEntry
.GetDisplayName(_currentSource, SiteOfOriginContainer.SiteOfOrigin);
3688
/// <summary><see cref="
JournalEntry
.ContentId"/></summary>
4208
JournalEntry
parentEntry = (JournalScope.Journal)[parentIndex];
4354
/// <summary><see cref="
JournalEntry
.ContentId"/></summary>
4582
internal NavigateInfo(Uri source, NavigationMode navigationMode,
JournalEntry
journalEntry)
4602
internal
JournalEntry
JournalEntry
4628
private
JournalEntry
_journalEntry;
4642
internal PageFunctionReturnInfo(PageFunctionBase finishingChildPageFunction, Uri source, NavigationMode navigationMode,
JournalEntry
journalEntry, object returnEventArgs)
src\Framework\System\Windows\Navigation\NavigationWindow.cs (3)
416
public
JournalEntry
RemoveBackEntry()
1106
JournalEntry
je = journalEntryUIElem.DataContext as
JournalEntry
;