コード例 #1
0
ファイル: ViewHandler.Android.cs プロジェクト: hevey/maui
 public static void MapRotationY(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateRotationY(view);
 }
コード例 #2
0
ファイル: ViewHandler.Android.cs プロジェクト: hevey/maui
 public static void MapAnchorY(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateAnchorY(view);
 }
コード例 #3
0
ファイル: ViewHandler.Android.cs プロジェクト: hevey/maui
 public static void MapTranslationX(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateTranslationX(view);
 }
コード例 #4
0
ファイル: ViewHandler.Android.cs プロジェクト: hevey/maui
 public static void MapScaleY(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateScaleY(view);
 }
コード例 #5
0
ファイル: ViewHandler.Android.cs プロジェクト: hevey/maui
 static partial void MappingFrame(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateAnchorX(view);
     handler.GetWrappedNativeView()?.UpdateAnchorY(view);
 }
コード例 #6
0
 public static void MapAnchorX(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateTransformation(view);
 }
コード例 #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);
 }
コード例 #8
0
 internal static void UpdateTransformation(IViewHandler handler, IView view)
 {
     handler.GetWrappedNativeView()?.UpdateTransformation(view);
 }
コード例 #9
0
ファイル: ViewHandler.iOS.cs プロジェクト: hevey/maui
 static partial void MappingFrame(IViewHandler handler, IView view)
 {
     UpdateTransformation(handler, view);
     handler.GetWrappedNativeView()?.UpdateBackgroundLayerFrame();
 }