-
在
page.xaml页1<Entry x:Name="entry" Placeholder="This is an entry" /> -
在
page.cs文件1 2 3 4 5 6 7 8protected override void OnHandlerChanged() { base.OnHandlerChanged(); #if ANDROID var edittext = entry.Handler.PlatformView as Android.Widget.EditText; edittext.Background = null; #endif }