@@ -15,71 +15,71 @@ public partial class RingShape : Path
1515 public partial double StartAngle { get ; set ; }
1616
1717 [ GeneratedDependencyProperty ( DefaultValue = 90.0d ) ]
18- public partial double EndAngle { get ; set ; }
18+ public partial double EndAngle { get ; set ; }
1919
2020 [ GeneratedDependencyProperty ( DefaultValue = SweepDirection . Clockwise ) ]
21- public partial SweepDirection SweepDirection { get ; set ; }
21+ public partial SweepDirection SweepDirection { get ; set ; }
2222
2323 [ GeneratedDependencyProperty ( DefaultValue = 0.0d ) ]
24- public partial double MinAngle { get ; set ; }
24+ public partial double MinAngle { get ; set ; }
2525
2626 [ GeneratedDependencyProperty ( DefaultValue = 360.0d ) ]
27- public partial double MaxAngle { get ; set ; }
27+ public partial double MaxAngle { get ; set ; }
2828
2929 [ GeneratedDependencyProperty ( DefaultValue = 0.0d ) ]
30- public partial double RadiusWidth { get ; set ; }
30+ public partial double RadiusWidth { get ; set ; }
3131
3232 [ GeneratedDependencyProperty ( DefaultValue = 0.0d ) ]
33- public partial double RadiusHeight { get ; set ; }
33+ public partial double RadiusHeight { get ; set ; }
3434
3535 [ GeneratedDependencyProperty ]
36- public partial bool IsCircle { get ; set ; }
36+ public partial bool IsCircle { get ; set ; }
3737
3838 [ GeneratedDependencyProperty ]
39- public partial Point Center { get ; set ; }
39+ public partial Point Center { get ; set ; }
4040
4141 [ GeneratedDependencyProperty ]
42- public partial double ActualRadiusWidth { get ; set ; }
42+ public partial double ActualRadiusWidth { get ; set ; }
4343
4444 [ GeneratedDependencyProperty ]
45- public partial double ActualRadiusHeight { get ; set ; }
45+ public partial double ActualRadiusHeight { get ; set ; }
4646
47- protected virtual void OnStartAngleChanged ( double oldValue , double newValue )
47+ partial void OnStartAngleChanged ( double newValue )
4848 {
4949 StartAngleChanged ( ) ;
5050 }
5151
52- protected virtual void OnEndAngleChanged ( double oldValue , double newValue )
52+ partial void OnEndAngleChanged ( double newValue )
5353 {
5454 EndAngleChanged ( ) ;
5555 }
5656
57- protected virtual void OnSweepDirectionChanged ( SweepDirection oldValue , SweepDirection newValue )
57+ partial void OnSweepDirectionChanged ( SweepDirection newValue )
5858 {
5959 SweepDirectionChanged ( ) ;
6060 }
6161
62- protected virtual void OnMinAngleChanged ( double oldValue , double newValue )
62+ partial void OnMinAngleChanged ( double newValue )
6363 {
6464 MinMaxAngleChanged ( false ) ;
6565 }
6666
67- protected virtual void OnMaxAngleChanged ( double oldValue , double newValue )
67+ partial void OnMaxAngleChanged ( double newValue )
6868 {
6969 MinMaxAngleChanged ( true ) ;
7070 }
7171
72- protected virtual void OnRadiusWidthChanged ( double oldValue , double newValue )
72+ partial void OnRadiusWidthChanged ( double newValue )
7373 {
7474 RadiusWidthChanged ( ) ;
7575 }
7676
77- protected virtual void OnRadiusHeightChanged ( double oldValue , double newValue )
77+ partial void OnRadiusHeightChanged ( double newValue )
7878 {
7979 RadiusHeightChanged ( ) ;
8080 }
8181
82- protected virtual void OnIsCircleChanged ( bool oldValue , bool newValue )
82+ partial void OnIsCircleChanged ( bool newValue )
8383 {
8484 IsCircleChanged ( ) ;
8585 }
0 commit comments