14 references to NameProperty
PresentationFramework (14)
System\Windows\Controls\DataGrid.cs (1)
41dataGridRowPresenterFactory.SetValue(FrameworkElement.NameProperty, ItemsPanelPartName);
System\Windows\Controls\ItemContainerGenerator.cs (2)
108label = (string)d.GetValue(FrameworkElement.NameProperty); 1053string name = (String)peer.GetValue(FrameworkElement.NameProperty);
System\Windows\FrameworkContentElement.cs (2)
696if (dp == FrameworkElement.NameProperty && 812FrameworkElement.NameProperty.AddOwner(
System\Windows\FrameworkElement.cs (3)
2068if (dp == FrameworkElement.NameProperty && 3211get { return (string) GetValue(NameProperty); } 3212set { SetValue(NameProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2691DependencyProperty dp = System.Windows.FrameworkElement.NameProperty;
System\Windows\Markup\KnownTypes.cs (1)
1781return System.Windows.FrameworkElement.NameProperty;
System\Windows\Setter.cs (2)
70if( property == FrameworkElement.NameProperty) 72throw new InvalidOperationException(SR.Format(SR.CannotHavePropertyInStyle, FrameworkElement.NameProperty.Name));
System\Windows\StyleHelper.cs (2)
460if (StyleHelper.IsSetOnContainer(FrameworkElement.NameProperty, ref containerDependents, true)) 462throw new InvalidOperationException(SR.Format(SR.CannotHavePropertyInTemplate, FrameworkElement.NameProperty.Name));