1 implementation of IRadioButtonHandler
Microsoft.Maui (1)
Handlers\RadioButton\RadioButtonHandler.cs (1)
15 public partial class RadioButtonHandler : IRadioButtonHandler
17 references to IRadioButtonHandler
Microsoft.Maui (14)
Handlers\RadioButton\RadioButtonHandler.cs (5)
17 public static IPropertyMapper<IRadioButton, IRadioButtonHandler> Mapper = new PropertyMapper<IRadioButton, IRadioButtonHandler>(ViewHandler.ViewMapper) 32 public static CommandMapper<IRadioButton, IRadioButtonHandler> CommandMapper = new(ViewCommandMapper) 50 IRadioButton IRadioButtonHandler.VirtualView => VirtualView; 52 PlatformView IRadioButtonHandler.PlatformView => PlatformView;
Handlers\RadioButton\RadioButtonHandler.Standard.cs (9)
9 public static void MapBackground(IRadioButtonHandler handler, IRadioButton radioButton) { } 10 public static void MapIsChecked(IRadioButtonHandler handler, IRadioButton radioButton) { } 11 public static void MapContent(IRadioButtonHandler handler, IRadioButton radioButton) { } 12 public static void MapTextColor(IRadioButtonHandler handler, ITextStyle textStyle) { } 13 public static void MapCharacterSpacing(IRadioButtonHandler handler, ITextStyle textStyle) { } 14 public static void MapFont(IRadioButtonHandler handler, ITextStyle textStyle) { } 15 public static void MapStrokeColor(IRadioButtonHandler handler, IRadioButton radioButton) { } 16 public static void MapStrokeThickness(IRadioButtonHandler handler, IRadioButton radioButton) { } 17 public static void MapCornerRadius(IRadioButtonHandler handler, IRadioButton radioButton) { }
Microsoft.Maui.Controls (3)
RadioButton\RadioButton.Mapper.cs (1)
14 RadioButtonHandler.Mapper.ReplaceMapping<RadioButton, IRadioButtonHandler>(nameof(IRadioButton.Content), MapContent);
RadioButton\RadioButton.Standard.cs (2)
7 => MapContent((IRadioButtonHandler)handler, radioButton); 9 public static void MapContent(IRadioButtonHandler handler, RadioButton radioButton)