Ejemplo n.º 1
0
 public static void MapRotationY(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateRotationY(view);
 }
Ejemplo n.º 2
0
 public static void MapAnchorY(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateAnchorY(view);
 }
Ejemplo n.º 3
0
 public static void MapTranslationX(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateTranslationX(view);
 }
Ejemplo n.º 4
0
 public static void MapScaleY(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateScaleY(view);
 }
Ejemplo n.º 5
0
 static partial void MappingFrame(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateAnchorX(view);
     handler.GetWrappedNativeView()?.UpdateAnchorY(view);
 }
 public static void MapAnchorX(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateTransformation(view);
 }
Ejemplo n.º 7
0
 static partial void MappingFrame(IViewHandler handler, IView view)
 {
     // Both Clip and Shadow depend on the Control size.
     handler.GetWrappedNativeView()?.UpdateClip(view);
     handler.GetWrappedNativeView()?.UpdateShadow(view);
 }
Ejemplo n.º 8
0
 internal static void UpdateTransformation(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateTransformation(view);
 }
Ejemplo n.º 9
0
 static partial void MappingFrame(IViewHandler handler, IView view)
 {
     UpdateTransformation(handler, view);
     handler.GetWrappedNativeView()?.UpdateBackgroundLayerFrame();
 }