14 references to NameProperty
PresentationFramework (14)
System\Windows\Controls\DataGrid.cs (1)
45dataGridRowPresenterFactory.SetValue(FrameworkElement.NameProperty, ItemsPanelPartName);
System\Windows\Controls\ItemContainerGenerator.cs (2)
115label = (string)d.GetValue(FrameworkElement.NameProperty); 1060string name = (String)peer.GetValue(FrameworkElement.NameProperty);
System\Windows\FrameworkContentElement.cs (2)
719if (dp == FrameworkElement.NameProperty && 835FrameworkElement.NameProperty.AddOwner(
System\Windows\FrameworkElement.cs (3)
2088if (dp == FrameworkElement.NameProperty && 3234get { return (string) GetValue(NameProperty); } 3235set { SetValue(NameProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2614DependencyProperty dp = System.Windows.FrameworkElement.NameProperty;
System\Windows\Markup\KnownTypes.cs (1)
1788return System.Windows.FrameworkElement.NameProperty;
System\Windows\Setter.cs (2)
81if( property == FrameworkElement.NameProperty) 83throw new InvalidOperationException(SR.Format(SR.CannotHavePropertyInStyle, FrameworkElement.NameProperty.Name));
System\Windows\StyleHelper.cs (2)
479if (StyleHelper.IsSetOnContainer(FrameworkElement.NameProperty, ref containerDependents, true)) 481throw new InvalidOperationException(SR.Format(SR.CannotHavePropertyInTemplate, FrameworkElement.NameProperty.Name));