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