public static void MapBackground(IShapeViewHandler handler, IShapeView shapeView)
        {
            handler.UpdateValue(nameof(IViewHandler.ContainerView));
            handler.ToPlatform().UpdateBackground(shapeView);

            handler.PlatformView?.InvalidateShape(shapeView);
        }
 public static void MapShape(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.UpdateShape(shapeView);
     if (handler.ContainerView is WrapperView wrapperView)
     {
         wrapperView.UpdateShape(shapeView.Shape);
     }
 }
        public static void MapFillRule(IShapeViewHandler handler, Polygon polygon)
        {
            IDrawable drawable = handler.PlatformView?.Drawable;

            if (drawable == null)
            {
                return;
            }

            if (drawable is ShapeDrawable shapeDrawable)
            {
                shapeDrawable.UpdateWindingMode(polygon.FillRule == FillRule.EvenOdd ? WindingMode.EvenOdd : WindingMode.NonZero);
            }

            handler.PlatformView?.InvalidateShape(polygon);
        }
        public static void MapFillRule(IShapeViewHandler handler, Polyline polyline)
        {
            IDrawable drawable = handler.PlatformView?.Drawable;

            if (drawable == null)
            {
                return;
            }

            if (drawable is ShapeDrawable shapeDrawable)
            {
                shapeDrawable.WindingMode = polyline.FillRule == FillRule.EvenOdd ? Graphics.WindingMode.EvenOdd : Graphics.WindingMode.NonZero;
            }

            handler.PlatformView?.InvalidateShape(polyline);
        }
Exemple #5
0
        public static void MapRenderTransform(IShapeViewHandler handler, Path path)
        {
            IDrawable drawable = handler.PlatformView?.Drawable;

            if (drawable == null)
            {
                return;
            }

            if (drawable is ShapeDrawable shapeDrawable)
            {
                Matrix?matrix = path.RenderTransform?.Value;

                if (matrix != null)
                {
                    shapeDrawable.UpdateRenderTransform(matrix.Value.ToMatrix3X2());
                }
            }

            handler.PlatformView?.InvalidateShape(path);
        }
Exemple #6
0
 public static void MapData(IShapeViewHandler handler, Path path)
 {
     handler.PlatformView?.InvalidateShape(path);
 }
Exemple #7
0
 public static void MapShape(IShapeViewHandler handler, Path path)
 {
 }
 public static void MapPoints(IShapeViewHandler handler, Polyline polyline)
 {
     handler.PlatformView?.InvalidateShape(polyline);
 }
 public static void MapCornerRadius(IShapeViewHandler handler, RoundRectangle roundRectangle)
 {
 }
 public static void MapStrokeMiterLimit(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Exemple #11
0
 public static void MapRadiusX(IShapeViewHandler handler, Rectangle rectangle)
 {
     handler.PlatformView?.InvalidateShape(rectangle);
 }
Exemple #12
0
 public static void MapStrokeLineJoin(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
 public static void MapStrokeDashOffset(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Exemple #14
0
 public static void MapStrokeDashPattern(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Exemple #15
0
 public static void MapStrokeDashOffset(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Exemple #16
0
 public static void MapStrokeThickness(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Exemple #17
0
 public static void MapFill(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Exemple #18
0
 public static void MapAspect(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
 public static void MapFill(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Exemple #20
0
 public static void MapStrokeMiterLimit(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
 public static void MapStrokeThickness(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Exemple #22
0
 public static void MapBackground(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
 public static void MapStrokeLineJoin(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Exemple #24
0
 public static void MapRenderTransform(IShapeViewHandler handler, Path path)
 {
 }
Exemple #25
0
 public static void MapX1(IShapeViewHandler handler, Line line)
 {
     handler.PlatformView?.InvalidateShape(line);
 }
Exemple #26
0
 public static void MapRadiusX(IShapeViewHandler handler, Rectangle rectangle)
 {
 }
Exemple #27
0
 public static void MapShape(IShapeViewHandler handler, Polyline polyline)
 {
     handler.PlatformView?.UpdateShape(polyline);
 }
Exemple #28
0
 public static void MapRenderTransform(IShapeViewHandler handler, Path path)
 {
     handler.PlatformView?.InvalidateShape(path);
 }
Exemple #29
0
 public static void MapShape(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.UpdateShape(shapeView);
 }
Exemple #30
0
 public static void MapX1(IShapeViewHandler handler, Line line)
 {
 }