static private void AccessibleNameProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            ScalableImageSource obj = (ScalableImageSource)o;

            obj.OnAccessibleNameChanged(new PropertyChangedEventArgs <string>((string)e.OldValue, (string)e.NewValue));
        }
        static private void BrushProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            ScalableImageSource obj = (ScalableImageSource)o;

            obj.OnBrushChanged(new PropertyChangedEventArgs <Brush>((Brush)e.OldValue, (Brush)e.NewValue));
        }
        static private void SizeProperty_PropertyChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            ScalableImageSource obj = (ScalableImageSource)o;

            obj.OnSizeChanged(new PropertyChangedEventArgs <Size>((Size)e.OldValue, (Size)e.NewValue));
        }