3 overrides of PropertyDescriptor
PresentationFramework (3)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
781public override PropertyDescriptor PropertyDescriptor
src\Framework\System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (1)
150public override PropertyDescriptor PropertyDescriptor
src\Framework\System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (1)
139public override PropertyDescriptor PropertyDescriptor
20 references to PropertyDescriptor
PresentationFramework (20)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (6)
508if (PropertyDescriptor != null && (PropertyDescriptor.IsReadOnly || 509(!PropertyIsAttached(PropertyDescriptor) && PropertyType == value.GetType() && 595DependencyPropertyDescriptor dependencyPropertyDescriptor = DependencyPropertyDescriptor.FromProperty(PropertyDescriptor); 687return _property.PropertyDescriptor; 694PropertyDescriptor descriptor = this.PropertyDescriptor;
src\Framework\System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (1)
152get { return _baseProperty.PropertyDescriptor; }
src\Framework\System\Windows\Markup\Primitives\MarkupWriter.cs (13)
538if (property.IsAttached || property.PropertyDescriptor == null) 597if (xlpa != null && xlpa.Name == property.PropertyDescriptor.Name) 602else if (upa != null && upa.Name == property.PropertyDescriptor.Name) 605_writer.WriteAttributeString(scope.GetPrefixOf(xamlUri), property.PropertyDescriptor.Name, xamlUri, property.StringValue); 609_writer.WriteAttributeString(property.PropertyDescriptor.Name, property.StringValue); 704if (property.IsAttached || property.PropertyDescriptor == null) 723WritePropertyStart(prefix, item.ObjectType.Name + "." + property.PropertyDescriptor.Name, uri); 847Debug.Assert(property.PropertyDescriptor != null); 849_writer.WriteStartElement(prefix, item.ObjectType.Name + "." + property.PropertyDescriptor.Name, uri); 888PropertyDescriptor descriptor = property.PropertyDescriptor; 951if (property.PropertyDescriptor != null) 1126if (property.IsContent || (cpa != null && property.PropertyDescriptor != null && property.PropertyDescriptor.Name == cpa.Name))