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