File: CheckBox\CheckBox.Mapper.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable using System; using System.Collections.Generic; using System.Text; using Microsoft.Maui.Controls.Platform; using Microsoft.Maui.Handlers; namespace Microsoft.Maui.Controls { public partial class CheckBox { internal new static void RemapForControls() { CheckBoxHandler.Mapper.ReplaceMapping<ICheckBox, ICheckBoxHandler>(nameof(Color), MapColor); } internal static void MapColor(ICheckBoxHandler handler, ICheckBox view) { handler?.UpdateValue(nameof(ICheckBox.Foreground)); } } } |