6 references to NameProperty
PresentationFramework (6)
src\Framework\System\Windows\Navigation\JournalEntry.cs (4)
174return dependencyObject != null ? (string)dependencyObject.GetValue(NameProperty) : null; 191dependencyObject.SetValue(NameProperty, name); 258get { return (string)GetValue(NameProperty); } 259set { SetValue(NameProperty, value); }
src\Framework\System\Windows\Navigation\JournalEntryListConverter.cs (1)
177current.SetValue(JournalEntry.NameProperty, SR.Get(SRID.NavWindowMenuCurrentPage));
src\Framework\System\Windows\Navigation\NavigationService.cs (1)
3565name = (string)dependencyObject.GetValue(JournalEntry.NameProperty);