10 instantiations of PropertyDataChangedEventArgs
PresentationCore (10)
Core\CSharp\System\Windows\Ink\DrawingAttributes.cs (6)
818new PropertyDataChangedEventArgs( args.OldProperty.Id, 827new PropertyDataChangedEventArgs( args.OldProperty.Id, 846new PropertyDataChangedEventArgs( args.NewProperty.Id, 856new PropertyDataChangedEventArgs(args.NewProperty.Id, 877new PropertyDataChangedEventArgs( args.NewProperty.Id, 889new PropertyDataChangedEventArgs( args.NewProperty.Id,
Core\CSharp\System\Windows\Ink\Stroke.cs (2)
426OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, propertyData, oldValue)); 439OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, null, propertyData));
Core\CSharp\System\Windows\Ink\StrokeCollection.cs (2)
187OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, propertyData, oldValue)); 199OnPropertyDataChanged(new PropertyDataChangedEventArgs(propertyDataId, null, propertyData));
21 references to PropertyDataChangedEventArgs
PresentationCore (15)
Core\CSharp\System\Windows\Ink\DrawingAttributes.cs (9)
600protected virtual void OnAttributeChanged(PropertyDataChangedEventArgs e) 629protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e) 817PropertyDataChangedEventArgs dargs = 826PropertyDataChangedEventArgs dargs = 845PropertyDataChangedEventArgs dargs = 855PropertyDataChangedEventArgs dargs = 876PropertyDataChangedEventArgs dargs = 888PropertyDataChangedEventArgs dargs = 974private void PrivateNotifyPropertyChanged(PropertyDataChangedEventArgs e)
Core\CSharp\System\Windows\Ink\Events.cs (1)
90public delegate void PropertyDataChangedEventHandler(object sender, PropertyDataChangedEventArgs e);
Core\CSharp\System\Windows\Ink\IncrementalHitTester.cs (1)
906private void OnStrokeDrawingAttributesChanged(object sender, PropertyDataChangedEventArgs args)
Core\CSharp\System\Windows\Ink\Stroke.cs (3)
612protected virtual void OnDrawingAttributesChanged(PropertyDataChangedEventArgs e) 678protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e) 1073private void DrawingAttributes_Changed(object sender, PropertyDataChangedEventArgs e)
Core\CSharp\System\Windows\Ink\StrokeCollection.cs (1)
713protected virtual void OnPropertyDataChanged(PropertyDataChangedEventArgs e)
PresentationFramework (6)
src\Framework\MS\Internal\Ink\DrawingAttributesDefaultValueFactory.cs (1)
76internal void OnDrawingAttributesChanged(object sender, PropertyDataChangedEventArgs e)
src\Framework\MS\Internal\Ink\StrokeCollectionDefaultValueFactory.cs (2)
57new PropertyDataChangedEventHandler(promoter.OnStrokeCollectionChanged<PropertyDataChangedEventArgs>); 92new PropertyDataChangedEventHandler(OnStrokeCollectionChanged<PropertyDataChangedEventArgs>);
src\Framework\System\Windows\Controls\InkCanvas.cs (1)
2695private void DefaultDrawingAttributes_Changed(object sender, PropertyDataChangedEventArgs args)
src\Framework\System\Windows\Controls\StickyNote.cs (2)
1049_propertyDataChangedHandler = new StrokeChangedHandler<PropertyDataChangedEventArgs>(this); 1932private StrokeChangedHandler<PropertyDataChangedEventArgs> _propertyDataChangedHandler;