示例#1
0
 public static void InvalidateShape(this PlatformGraphicsView platformView, IShapeView shapeView)
 {
     platformView.InvalidateDrawable();
 }
示例#2
0
 public static void UpdateShape(this PlatformGraphicsView platformView, IShapeView shapeView)
 {
     platformView.Drawable = new ShapeDrawable(shapeView);
 }
示例#3
0
 public static void UpdateDrawable(this PlatformGraphicsView PlatformGraphicsView, IGraphicsView graphicsView)
 {
     PlatformGraphicsView.Drawable = graphicsView.Drawable;
 }