6 references to NameProperty
PresentationFramework (6)
System\Windows\Navigation\JournalEntry.cs (4)
141return dependencyObject != null ? (string)dependencyObject.GetValue(NameProperty) : null; 155dependencyObject.SetValue(NameProperty, name); 216get { return (string)GetValue(NameProperty); } 217set { SetValue(NameProperty, value); }
System\Windows\Navigation\JournalEntryListConverter.cs (1)
160current.SetValue(JournalEntry.NameProperty, SR.NavWindowMenuCurrentPage);
System\Windows\Navigation\NavigationService.cs (1)
3264name = (string)dependencyObject.GetValue(JournalEntry.NameProperty);