Maui Entry控件隐藏下划线

学习如何在 .NET MAUI 安卓应用中,通过修改 Handler 彻底移除 Entry 输入框的默认下划线背景,让 UI 更加简洁。

  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
          }
    
Built with Hugo
Theme Stack designed by Jimmy