6 instantiations of ExtendedProperty
PresentationCore (6)
MS\Internal\Ink\ExtendedProperty.cs (2)
197return new ExtendedProperty(guid, _value); 210return new ExtendedProperty(guid, newArray);
MS\Internal\Ink\ExtendedPropertyCollection.cs (3)
169ExtendedProperty extendedProperty = new ExtendedProperty(id, value); 266new ExtendedProperty(currentProperty.Id, oldValue), //old prop 279ExtendedProperty attributeToAdd = new ExtendedProperty(attributeId, value);
System\Windows\Ink\DrawingAttributes.cs (1)
809new ExtendedProperty( args.OldProperty.Id,
28 references to ExtendedProperty
PresentationCore (28)
MS\Internal\Ink\ExtendedProperty.cs (7)
56ExtendedProperty that = (ExtendedProperty)obj; 98public static bool operator ==(ExtendedProperty first, ExtendedProperty second) 116public static bool operator !=(ExtendedProperty first, ExtendedProperty second) 179internal ExtendedProperty Clone()
MS\Internal\Ink\ExtendedPropertyCollection.cs (10)
169ExtendedProperty extendedProperty = new ExtendedProperty(id, value); 187ExtendedProperty propertyToRemove = GetExtendedPropertyById(id); 241ExtendedProperty ep = GetExtendedPropertyById(attributeId); 253ExtendedProperty currentProperty = _extendedProperties[i]; 279ExtendedProperty attributeToAdd = new ExtendedProperty(attributeId, value); 293internal ExtendedProperty this[int index] 323private void Add(ExtendedProperty extendedProperty) 342private ExtendedProperty GetExtendedPropertyById(Guid id) 372private List<ExtendedProperty> _extendedProperties = new List<ExtendedProperty>();
MS\Internal\Ink\InkSerializedFormat\CustomAttributeSerializer.cs (3)
56internal static void EncodeToStream(ExtendedProperty attribute, Stream stream) 742ExtendedProperty prop = attributes[i]; 770ExtendedProperty attribute = attributes[x];
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\HashHelper.cs (1)
41typeof(System.Windows.Ink.ExtendedProperty), // bug 1612101
System\Windows\Ink\DrawingAttributes.cs (1)
808ExtendedProperty newProperty =
System\Windows\Ink\Events.cs (6)
156private ExtendedProperty _oldProperty; 157private ExtendedProperty _newProperty; 160internal ExtendedPropertiesChangedEventArgs(ExtendedProperty oldProperty, 161ExtendedProperty newProperty) 175internal ExtendedProperty OldProperty 184internal ExtendedProperty NewProperty