10 instantiations of PropertyDataChangedEventArgs
PresentationCore (10)
System\Windows\Ink\DrawingAttributes.cs (6)
801new PropertyDataChangedEventArgs( args.OldProperty.Id, 810new PropertyDataChangedEventArgs( args.OldProperty.Id, 828new PropertyDataChangedEventArgs( args.NewProperty.Id, 838new PropertyDataChangedEventArgs(args.NewProperty.Id, 858new PropertyDataChangedEventArgs( args.NewProperty.Id, 870new PropertyDataChangedEventArgs( args.NewProperty.Id,
System\Windows\Ink\Stroke.cs (2)
402OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, propertyData, oldValue)); 415OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, null, propertyData));
System\Windows\Ink\StrokeCollection.cs (2)
164OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, propertyData, oldValue)); 176OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, null, propertyData));
21 references to PropertyDataChangedEventArgs
PresentationCore (15)
System\Windows\Ink\DrawingAttributes.cs (9)
586protected virtual void OnAttributeChanged(PropertyDataChangedEventArgs e) 615protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e) 800PropertyDataChangedEventArgs dargs = 809PropertyDataChangedEventArgs dargs = 827PropertyDataChangedEventArgs dargs = 837PropertyDataChangedEventArgs dargs = 857PropertyDataChangedEventArgs dargs = 869PropertyDataChangedEventArgs dargs = 955private void PrivateNotifyPropertyChanged(PropertyDataChangedEventArgs e)
System\Windows\Ink\Events.cs (1)
85public delegate void PropertyDataChangedEventHandler(object sender, PropertyDataChangedEventArgs e);
System\Windows\Ink\IncrementalHitTester.cs (1)
882private void OnStrokeDrawingAttributesChanged(object sender, PropertyDataChangedEventArgs args)
System\Windows\Ink\Stroke.cs (3)
582protected virtual void OnDrawingAttributesChanged(PropertyDataChangedEventArgs e) 645protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e) 1036private void DrawingAttributes_Changed(object sender, PropertyDataChangedEventArgs e)
System\Windows\Ink\StrokeCollection.cs (1)
670protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e)
PresentationFramework (6)
MS\Internal\Ink\DrawingAttributesDefaultValueFactory.cs (1)
68internal void OnDrawingAttributesChanged(object sender, PropertyDataChangedEventArgs e)
MS\Internal\Ink\StrokeCollectionDefaultValueFactory.cs (2)
49new PropertyDataChangedEventHandler(promoter.OnStrokeCollectionChanged<PropertyDataChangedEventArgs>); 84new PropertyDataChangedEventHandler(OnStrokeCollectionChanged<PropertyDataChangedEventArgs>);
System\Windows\Controls\InkCanvas.cs (1)
2558private void DefaultDrawingAttributes_Changed(object sender, PropertyDataChangedEventArgs args)
System\Windows\Controls\StickyNote.cs (2)
1000_propertyDataChangedHandler = new StrokeChangedHandler<PropertyDataChangedEventArgs>(this); 1853private StrokeChangedHandler<PropertyDataChangedEventArgs> _propertyDataChangedHandler;