1 implementation of IButtonHandler
Microsoft.Maui (1)
Handlers\Button\ButtonHandler.cs (1)
16 public partial class ButtonHandler : IButtonHandler
28 references to IButtonHandler
Microsoft.Maui (20)
Handlers\Button\ButtonHandler.cs (11)
23 public static IPropertyMapper<IImage, IButtonHandler> ImageButtonMapper = new PropertyMapper<IImage, IButtonHandler>() 28 public static IPropertyMapper<ITextButton, IButtonHandler> TextButtonMapper = new PropertyMapper<ITextButton, IButtonHandler>() 36 public static IPropertyMapper<IButton, IButtonHandler> Mapper = new PropertyMapper<IButton, IButtonHandler>(TextButtonMapper, ImageButtonMapper, ViewHandler.ViewMapper) 45 public static CommandMapper<IButton, IButtonHandler> CommandMapper = new(ViewCommandMapper); 63 IButton IButtonHandler.VirtualView => VirtualView; 65 PlatformView IButtonHandler.PlatformView => PlatformView; 67 partial class ButtonImageSourcePartSetter : ImageSourcePartSetter<IButtonHandler> 69 public ButtonImageSourcePartSetter(IButtonHandler handler)
Handlers\Button\ButtonHandler.Standard.cs (9)
9 public static void MapStrokeColor(IButtonHandler handler, IButtonStroke buttonStroke) { } 10 public static void MapStrokeThickness(IButtonHandler handler, IButtonStroke buttonStroke) { } 11 public static void MapCornerRadius(IButtonHandler handler, IButtonStroke buttonStroke) { } 12 public static void MapText(IButtonHandler handler, IText button) { } 13 public static void MapTextColor(IButtonHandler handler, ITextStyle button) { } 14 public static void MapCharacterSpacing(IButtonHandler handler, ITextStyle button) { } 15 public static void MapFont(IButtonHandler handler, ITextStyle button) { } 16 public static void MapPadding(IButtonHandler handler, IButton button) { } 17 public static void MapImageSource(IButtonHandler handler, IImage image) { }
Microsoft.Maui.Controls (8)
Button\Button.Mapper.cs (6)
17 ButtonHandler.Mapper.ReplaceMapping<Button, IButtonHandler>(nameof(ContentLayout), MapContentLayout); 25 ButtonHandler.Mapper.ReplaceMapping<Button, IButtonHandler>(nameof(Text), MapText); 27 ButtonHandler.Mapper.ReplaceMapping<Button, IButtonHandler>(nameof(TextTransform), MapText); 28 ButtonHandler.Mapper.ReplaceMapping<Button, IButtonHandler>(nameof(Button.LineBreakMode), MapLineBreakMode); 36 public static void MapContentLayout(IButtonHandler handler, Button button) 42 MapContentLayout((IButtonHandler)handler, button);
Button\Button.Standard.cs (2)
20 public static void MapText(IButtonHandler handler, Button button) { } 22 public static void MapLineBreakMode(IButtonHandler handler, Button button) { }