2 writes to _dp
WindowsBase (2)
Base\MS\Internal\ComponentModel\DependencyObjectPropertyDescriptor.cs (2)
43_dp = dp; 62_dp = dp;
17 references to _dp
WindowsBase (17)
Base\MS\Internal\ComponentModel\DependencyObjectPropertyDescriptor.cs (17)
49_metadata = _dp.GetMetadata(objectType); 64_metadata = _dp.GetMetadata(ownerType); 95return DO.GetValue(_dp); 130DO.ClearValue(_dp); 140DO.SetValue(_dp, value); 150bool shouldSerialize = DO.ShouldSerializeProperty(_dp); 208tracker = new PropertyChangeTracker(DO, _dp); 293bool readOnly = _dp.ReadOnly; 306get { return _dp.PropertyType; } 334get { return _dp; } 466MethodInfo mi = GetAttachedPropertyMethod(_dp); 473Type propertyReflectionType = TypeDescriptor.GetReflectionType(_dp.PropertyType); 614reflectionType = TypeDescriptor.GetReflectionType(_dp.OwnerType); 629string methodName = string.Concat(methodPrefix, _dp.Name); 703readOnly |= _dp.ReadOnly; 707if (_property == null && !readOnly && GetAttachedPropertySetMethod(_dp) == null) { 712DependencyPropertyAttribute dpa = new DependencyPropertyAttribute(_dp, (_property == null));