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

            handler.PlatformView?.InvalidateShape(shapeView);
        }
Esempio n. 2
0
 public static void MapShape(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.UpdateShape(shapeView);
     if (handler.ContainerView is WrapperView wrapperView)
     {
         wrapperView.UpdateShape(shapeView.Shape);
     }
 }
Esempio n. 3
0
        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);
        }
Esempio n. 4
0
        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);
        }
Esempio n. 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);
        }
Esempio n. 6
0
 public static void MapData(IShapeViewHandler handler, Path path)
 {
     handler.PlatformView?.InvalidateShape(path);
 }
Esempio n. 7
0
 public static void MapShape(IShapeViewHandler handler, Path path)
 {
 }
Esempio n. 8
0
 public static void MapPoints(IShapeViewHandler handler, Polyline polyline)
 {
     handler.PlatformView?.InvalidateShape(polyline);
 }
 public static void MapCornerRadius(IShapeViewHandler handler, RoundRectangle roundRectangle)
 {
 }
Esempio n. 10
0
 public static void MapStrokeMiterLimit(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Esempio n. 11
0
 public static void MapRadiusX(IShapeViewHandler handler, Rectangle rectangle)
 {
     handler.PlatformView?.InvalidateShape(rectangle);
 }
Esempio n. 12
0
 public static void MapStrokeLineJoin(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Esempio n. 13
0
 public static void MapStrokeDashOffset(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Esempio n. 14
0
 public static void MapStrokeDashPattern(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Esempio n. 15
0
 public static void MapStrokeDashOffset(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Esempio n. 16
0
 public static void MapStrokeThickness(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Esempio n. 17
0
 public static void MapFill(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Esempio n. 18
0
 public static void MapAspect(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Esempio n. 19
0
 public static void MapFill(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Esempio n. 20
0
 public static void MapStrokeMiterLimit(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Esempio n. 21
0
 public static void MapStrokeThickness(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Esempio n. 22
0
 public static void MapBackground(IShapeViewHandler handler, IShapeView shapeView)
 {
 }
Esempio n. 23
0
 public static void MapStrokeLineJoin(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.InvalidateShape(shapeView);
 }
Esempio n. 24
0
 public static void MapRenderTransform(IShapeViewHandler handler, Path path)
 {
 }
Esempio n. 25
0
 public static void MapX1(IShapeViewHandler handler, Line line)
 {
     handler.PlatformView?.InvalidateShape(line);
 }
Esempio n. 26
0
 public static void MapRadiusX(IShapeViewHandler handler, Rectangle rectangle)
 {
 }
Esempio n. 27
0
 public static void MapShape(IShapeViewHandler handler, Polyline polyline)
 {
     handler.PlatformView?.UpdateShape(polyline);
 }
Esempio n. 28
0
 public static void MapRenderTransform(IShapeViewHandler handler, Path path)
 {
     handler.PlatformView?.InvalidateShape(path);
 }
Esempio n. 29
0
 public static void MapShape(IShapeViewHandler handler, IShapeView shapeView)
 {
     handler.PlatformView?.UpdateShape(shapeView);
 }
Esempio n. 30
0
 public static void MapX1(IShapeViewHandler handler, Line line)
 {
 }