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