14 references to NameProperty
PresentationFramework (14)
System\Windows\Controls\DataGrid.cs (1)
42dataGridRowPresenterFactory.SetValue(FrameworkElement.NameProperty, ItemsPanelPartName);
System\Windows\Controls\ItemContainerGenerator.cs (2)
109label = (string)d.GetValue(FrameworkElement.NameProperty); 1054string name = (String)peer.GetValue(FrameworkElement.NameProperty);
System\Windows\FrameworkContentElement.cs (2)
700if (dp == FrameworkElement.NameProperty && 816FrameworkElement.NameProperty.AddOwner(
System\Windows\FrameworkElement.cs (3)
2072if (dp == FrameworkElement.NameProperty && 3218get { return (string) GetValue(NameProperty); } 3219set { SetValue(NameProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2692DependencyProperty dp = System.Windows.FrameworkElement.NameProperty;
System\Windows\Markup\KnownTypes.cs (1)
1782return System.Windows.FrameworkElement.NameProperty;
System\Windows\Setter.cs (2)
71if( property == FrameworkElement.NameProperty) 73throw new InvalidOperationException(SR.Format(SR.CannotHavePropertyInStyle, FrameworkElement.NameProperty.Name));
System\Windows\StyleHelper.cs (2)
465if (StyleHelper.IsSetOnContainer(FrameworkElement.NameProperty, ref containerDependents, true)) 467throw new InvalidOperationException(SR.Format(SR.CannotHavePropertyInTemplate, FrameworkElement.NameProperty.Name));