Пример #1
0
 public static void MapPadding(IImageButtonHandler handler, IImageButton imageButton)
 {
     (handler.PlatformView as ShapeableImageView)?.UpdatePadding(imageButton);
 }
Пример #2
0
 public static void MapStrokeThickness(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     (handler.PlatformView as ShapeableImageView)?.UpdateStrokeThickness(buttonStroke);
 }
Пример #3
0
 public static void MapCornerRadius(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     (handler.PlatformView as ShapeableImageView)?.UpdateCornerRadius(buttonStroke);
 }
Пример #4
0
 public static void MapPadding(IImageButtonHandler handler, IImageButton imageButton)
 {
 }
Пример #5
0
 // TODO: NET7 make this public
 internal static void MapBackground(IImageButtonHandler handler, IImageButton imageButton)
 {
     (handler.PlatformView as ShapeableImageView)?.UpdateBackground(imageButton);
 }
Пример #6
0
 public static void MapStrokeThickness(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
 }
Пример #7
0
 public static void MapCornerRadius(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
 }
Пример #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);
 }
Пример #11
0
 public static void MapCornerRadius(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     handler.PlatformView?.UpdateCornerRadius(buttonStroke);
 }
Пример #12
0
 public static void MapStrokeThickness(IImageButtonHandler handler, IButtonStroke buttonStroke)
 {
     handler.PlatformView?.UpdateStrokeThickness(buttonStroke);
 }