6 instantiations of ExtendedProperty
PresentationCore (6)
MS\Internal\Ink\ExtendedProperty.cs (2)
186return new ExtendedProperty(guid, _value); 199return new ExtendedProperty(guid, newArray);
MS\Internal\Ink\ExtendedPropertyCollection.cs (3)
154ExtendedProperty extendedProperty = new ExtendedProperty(id, value); 251new ExtendedProperty(currentProperty.Id, oldValue), //old prop 264ExtendedProperty attributeToAdd = new ExtendedProperty(attributeId, value);
System\Windows\Ink\DrawingAttributes.cs (1)
798new ExtendedProperty( args.OldProperty.Id,
27 references to ExtendedProperty
PresentationCore (27)
MS\Internal\Ink\ExtendedProperty.cs (7)
45ExtendedProperty that = (ExtendedProperty)obj; 87public static bool operator ==(ExtendedProperty first, ExtendedProperty second) 105public static bool operator !=(ExtendedProperty first, ExtendedProperty second) 168internal ExtendedProperty Clone()
MS\Internal\Ink\ExtendedPropertyCollection.cs (10)
154ExtendedProperty extendedProperty = new ExtendedProperty(id, value); 172ExtendedProperty propertyToRemove = GetExtendedPropertyById(id); 226ExtendedProperty ep = GetExtendedPropertyById(attributeId); 238ExtendedProperty currentProperty = _extendedProperties[i]; 264ExtendedProperty attributeToAdd = new ExtendedProperty(attributeId, value); 278internal ExtendedProperty this[int index] 308private void Add(ExtendedProperty extendedProperty) 327private ExtendedProperty GetExtendedPropertyById(Guid id) 357private List<ExtendedProperty> _extendedProperties = new List<ExtendedProperty>();
MS\Internal\Ink\InkSerializedFormat\CustomAttributeSerializer.cs (3)
44internal static void EncodeToStream(ExtendedProperty attribute, Stream stream) 730ExtendedProperty prop = attributes[i]; 758ExtendedProperty attribute = attributes[x];
System\Windows\Ink\DrawingAttributes.cs (1)
797ExtendedProperty newProperty =
System\Windows\Ink\Events.cs (6)
150private ExtendedProperty _oldProperty; 151private ExtendedProperty _newProperty; 154internal ExtendedPropertiesChangedEventArgs(ExtendedProperty oldProperty, 155ExtendedProperty newProperty) 169internal ExtendedProperty OldProperty 178internal ExtendedProperty NewProperty