Esempio n. 1
0
 public static void MapPadding(IImageButtonHandler handler, IImageButton imageButton)
 {
     (handler.PlatformView as ShapeableImageView)?.UpdatePadding(imageButton);
 }
Esempio n. 2
0
 public static void MapStrokeThickness(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     (handler.PlatformView as ShapeableImageView)?.UpdateStrokeThickness(buttonStroke);
 }
Esempio n. 3
0
 public static void MapCornerRadius(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     (handler.PlatformView as ShapeableImageView)?.UpdateCornerRadius(buttonStroke);
 }
Esempio n. 4
0
 public static void MapPadding(IImageButtonHandler handler, IImageButton imageButton)
 {
 }
 // TODO: NET7 make this public
 internal static void MapBackground(IImageButtonHandler handler, IImageButton imageButton)
 {
     (handler.PlatformView as ShapeableImageView)?.UpdateBackground(imageButton);
 }
Esempio n. 6
0
 public static void MapStrokeThickness(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
 }
Esempio n. 7
0
 public static void MapCornerRadius(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
 }
Esempio n. 8
0
 public static void MapStrokeColor(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
 }
 public static void MapBackground(IImageButtonHandler handler, IImageButton imageButton)
 {
     (handler.PlatformView as Button)?.UpdateBackground(imageButton);
 }
 public static void MapStrokeColor(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     (handler.PlatformView as Button)?.UpdateStrokeColor(buttonStroke);
 }
Esempio n. 11
0
 public static void MapCornerRadius(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     handler.PlatformView?.UpdateCornerRadius(buttonStroke);
 }
Esempio n. 12
0
 public static void MapStrokeThickness(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     handler.PlatformView?.UpdateStrokeThickness(buttonStroke);
 }