1 implementation of IRadioButton
Microsoft.Maui.Controls (1)
RadioButton\RadioButton.cs (1)
12 public partial class RadioButton : TemplatedView, IElementConfiguration<RadioButton>, ITextElement, IFontElement, IBorderElement, IRadioButton
20 references to IRadioButton
Microsoft.Maui (17)
Handlers\RadioButton\IRadioButtonHandler.cs (1)
17 new IRadioButton VirtualView { get; }
Handlers\RadioButton\RadioButtonHandler.cs (9)
17 public static IPropertyMapper<IRadioButton, IRadioButtonHandler> Mapper = new PropertyMapper<IRadioButton, IRadioButtonHandler>(ViewHandler.ViewMapper) 22 [nameof(IRadioButton.IsChecked)] = MapIsChecked, 26 [nameof(IRadioButton.Content)] = MapContent, 27 [nameof(IRadioButton.StrokeColor)] = MapStrokeColor, 28 [nameof(IRadioButton.StrokeThickness)] = MapStrokeThickness, 29 [nameof(IRadioButton.CornerRadius)] = MapCornerRadius, 32 public static CommandMapper<IRadioButton, IRadioButtonHandler> CommandMapper = new(ViewCommandMapper) 50 IRadioButton IRadioButtonHandler.VirtualView => VirtualView;
Handlers\RadioButton\RadioButtonHandler.Standard.cs (7)
5 public partial class RadioButtonHandler : ViewHandler<IRadioButton, object> 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) { } 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.cs (1)
667 bool IRadioButton.IsChecked
RadioButton\RadioButton.Mapper.cs (1)
14 RadioButtonHandler.Mapper.ReplaceMapping<RadioButton, IRadioButtonHandler>(nameof(IRadioButton.Content), MapContent);
ViewExtensions.cs (1)
410 else if (element is IRadioButton rb)