10 instantiations of PropertyDataChangedEventArgs
PresentationCore (10)
System\Windows\Ink\DrawingAttributes.cs (6)
802new PropertyDataChangedEventArgs( args.OldProperty.Id, 811new PropertyDataChangedEventArgs( args.OldProperty.Id, 829new PropertyDataChangedEventArgs( args.NewProperty.Id, 839new PropertyDataChangedEventArgs(args.NewProperty.Id, 859new PropertyDataChangedEventArgs( args.NewProperty.Id, 871new PropertyDataChangedEventArgs( args.NewProperty.Id,
System\Windows\Ink\Stroke.cs (2)
403OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, propertyData, oldValue)); 416OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, null, propertyData));
System\Windows\Ink\StrokeCollection.cs (2)
163OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, propertyData, oldValue)); 175OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, null, propertyData));
21 references to PropertyDataChangedEventArgs
PresentationCore (15)
System\Windows\Ink\DrawingAttributes.cs (9)
587protected virtual void OnAttributeChanged(PropertyDataChangedEventArgs e) 616protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e) 801PropertyDataChangedEventArgs dargs = 810PropertyDataChangedEventArgs dargs = 828PropertyDataChangedEventArgs dargs = 838PropertyDataChangedEventArgs dargs = 858PropertyDataChangedEventArgs dargs = 870PropertyDataChangedEventArgs dargs = 956private void PrivateNotifyPropertyChanged(PropertyDataChangedEventArgs e)
System\Windows\Ink\Events.cs (1)
86public delegate void PropertyDataChangedEventHandler(object sender, PropertyDataChangedEventArgs e);
System\Windows\Ink\IncrementalHitTester.cs (1)
886private void OnStrokeDrawingAttributesChanged(object sender, PropertyDataChangedEventArgs args)
System\Windows\Ink\Stroke.cs (3)
583protected virtual void OnDrawingAttributesChanged(PropertyDataChangedEventArgs e) 646protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e) 1037private void DrawingAttributes_Changed(object sender, PropertyDataChangedEventArgs e)
System\Windows\Ink\StrokeCollection.cs (1)
677protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e)
PresentationFramework (6)
MS\Internal\Ink\DrawingAttributesDefaultValueFactory.cs (1)
69internal void OnDrawingAttributesChanged(object sender, PropertyDataChangedEventArgs e)
MS\Internal\Ink\StrokeCollectionDefaultValueFactory.cs (2)
50new PropertyDataChangedEventHandler(promoter.OnStrokeCollectionChanged<PropertyDataChangedEventArgs>); 85new PropertyDataChangedEventHandler(OnStrokeCollectionChanged<PropertyDataChangedEventArgs>);
System\Windows\Controls\InkCanvas.cs (1)
2543private void DefaultDrawingAttributes_Changed(object sender, PropertyDataChangedEventArgs args)
System\Windows\Controls\StickyNote.cs (2)
1023_propertyDataChangedHandler = new StrokeChangedHandler<PropertyDataChangedEventArgs>(this); 1879private StrokeChangedHandler<PropertyDataChangedEventArgs> _propertyDataChangedHandler;