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)
707if (dp == FrameworkElement.NameProperty && 823FrameworkElement.NameProperty.AddOwner(
System\Windows\FrameworkElement.cs (3)
2077if (dp == FrameworkElement.NameProperty && 3223get { return (string) GetValue(NameProperty); } 3224set { SetValue(NameProperty, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2612DependencyProperty dp = System.Windows.FrameworkElement.NameProperty;
System\Windows\Markup\KnownTypes.cs (1)
1788return System.Windows.FrameworkElement.NameProperty;
System\Windows\Setter.cs (2)
80if( property == FrameworkElement.NameProperty) 82throw new InvalidOperationException(SR.Format(SR.CannotHavePropertyInStyle, FrameworkElement.NameProperty.Name));
System\Windows\StyleHelper.cs (2)
473if (StyleHelper.IsSetOnContainer(FrameworkElement.NameProperty, ref containerDependents, true)) 475throw new InvalidOperationException(SR.Format(SR.CannotHavePropertyInTemplate, FrameworkElement.NameProperty.Name));