Maui Entry控件隐藏下划线

Maui Entry控件隐藏下划线

  1. page.xaml

    1
    
    <Entry x:Name="entry" Placeholder="This is an entry" />
    
  2. 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
          }
    
Licensed under CC BY-NC-SA 4.0
Built with Hugo
Theme Stack designed by Jimmy