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