Код: Выделить всё
Microsoft.Maui.Handlers.EntryHandler.Mapper.AppendToMapping(nameof(MdeEntry), (handler, view) =>
{
#if ANDROID
handler.PlatformView.SetBackgroundColor(Android.Graphics.Color.Transparent);
#elif WINDOWS
//handler.PlatformView.Background = Colors.Transparent.ToPlatform();
//handler.PlatformView.BorderThickness = new Microsoft.UI.Xaml.Thickness(0);
//handler.PlatformView.GotFocus += (s, e) =>
//{
// handler.PlatformView.Background = new Microsoft.UI.Xaml.Media.SolidColorBrush(Microsoft.UI.Colors.Transparent);
// handler.PlatformView.BorderThickness = new Microsoft.UI.Xaml.Thickness(0);
// handler.PlatformView.BorderBrush = new Microsoft.UI.Xaml.Media.SolidColorBrush(Microsoft.UI.Colors.Red);
//};
#endif
});
Код: Выделить всё
#if ANDROID
handler.PlatformView.SetBackgroundColor(Android.Graphics.Color.Transparent);