3 instantiations of DependencyPropertyDescriptor
WindowsBase (3)
Base\System\ComponentModel\DependencyPropertyDescriptor.cs (3)
109dpd = new DependencyPropertyDescriptor(property, property.Name, property.ComponentType, dp, isAttached); 159dpd = new DependencyPropertyDescriptor(null, dependencyProperty.Name, targetType, dependencyProperty, false); 227dpd = new DependencyPropertyDescriptor(null, dependencyProperty.Name, targetType, dependencyProperty, false);
51 references to DependencyPropertyDescriptor
PresentationFramework (15)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (7)
223DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(pd); 595DependencyPropertyDescriptor dependencyPropertyDescriptor = DependencyPropertyDescriptor.FromProperty(PropertyDescriptor); 699descriptor = DependencyPropertyDescriptor.FromProperty(property, GetObjectType()); 897DependencyPropertyDescriptor dpDesc = DependencyPropertyDescriptor.FromProperty(_descriptor);
src\Framework\System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (4)
148_descriptor = DependencyPropertyDescriptor.FromProperty(_propertyValue.Property, _item.ObjectType); 159DependencyPropertyDescriptor pdp = PropertyDescriptor as DependencyPropertyDescriptor; 175PropertyDescriptor descriptor = DependencyPropertyDescriptor.FromProperty(_propertyValue.Property, _item.ObjectType);
src\Framework\System\Windows\Standard\Utilities.cs (4)
262DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(property, component.GetType()); 275DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(property, component.GetType());
System.Activities.Presentation (21)
System.Activities.Presentation\System\Activities\Presentation\Annotations\FloatingAnnotationView.xaml.cs (4)
36DependencyPropertyDescriptor descriptor = DependencyPropertyDescriptor.FromProperty(UIElement.IsMouseOverProperty, typeof(UIElement)); 42DependencyPropertyDescriptor descriptor = DependencyPropertyDescriptor.FromProperty(UIElement.IsMouseOverProperty, typeof(UIElement));
System.Activities.Presentation\System\Activities\Presentation\Annotations\UIElementToAnnotationIndicatorAdapter.cs (4)
31DependencyPropertyDescriptor descriptor = DependencyPropertyDescriptor.FromProperty(UIElement.IsMouseOverProperty, typeof(UIElement)); 37DependencyPropertyDescriptor descriptor = DependencyPropertyDescriptor.FromProperty(UIElement.IsMouseOverProperty, typeof(UIElement));
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\Metadata\MutableAttributeTable.cs (1)
543PropertyDescriptor p = DependencyPropertyDescriptor.FromName(kvMember.Key, kv.Key, typeof(DependencyObject));
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\CategoryContainerAutomationPeer.cs (8)
259DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(PropertySelection.IsSelectedProperty, typeof(Grid)); 310DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(PropertySelection.IsSelectedProperty, typeof(Grid)); 534DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(PropertySelection.IsSelectedProperty, typeof(Grid)); 584DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(PropertySelection.IsSelectedProperty, typeof(Grid));
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\PropertyContainerAutomationPeer.cs (4)
125DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(PropertySelection.IsSelectedProperty, typeof(PropertyContainer)); 171DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(PropertySelection.IsSelectedProperty, typeof(PropertyContainer));
WindowsBase (15)
Base\MS\Internal\ComponentModel\DependencyObjectProvider.cs (1)
53DependencyPropertyDescriptor.ClearCache();
Base\System\ComponentModel\DependencyPropertyDescriptor.cs (14)
64public static DependencyPropertyDescriptor FromProperty(PropertyDescriptor property) 68DependencyPropertyDescriptor dpd; 127internal static DependencyPropertyDescriptor FromProperty(DependencyProperty dependencyProperty, Type ownerType, Type targetType, bool ignorePropertyType) 141DependencyPropertyDescriptor dpd = null; 194public static DependencyPropertyDescriptor FromProperty(DependencyProperty dependencyProperty, Type targetType) 208DependencyPropertyDescriptor dpd = null; 257public static DependencyPropertyDescriptor FromName(string name, Type ownerType, Type targetType) 279public static DependencyPropertyDescriptor FromName(string name, Type ownerType, Type targetType, 314DependencyPropertyDescriptor dp = obj as DependencyPropertyDescriptor; 619private static Dictionary<object, DependencyPropertyDescriptor> _cache = 620new Dictionary<object, DependencyPropertyDescriptor>( 623private static Dictionary<object, DependencyPropertyDescriptor> _ignorePropertyTypeCache = 624new Dictionary<object, DependencyPropertyDescriptor>(