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