6 references to NameProperty
PresentationFramework (6)
System\Windows\Navigation\JournalEntry.cs (4)
157return dependencyObject != null ? (string)dependencyObject.GetValue(NameProperty) : null; 171dependencyObject.SetValue(NameProperty, name); 232get { return (string)GetValue(NameProperty); } 233set { SetValue(NameProperty, value); }
System\Windows\Navigation\JournalEntryListConverter.cs (1)
170current.SetValue(JournalEntry.NameProperty, SR.NavWindowMenuCurrentPage);
System\Windows\Navigation\NavigationService.cs (1)
3329name = (string)dependencyObject.GetValue(JournalEntry.NameProperty);