2using Microsoft.Maui.Controls;
14 this.InitializeComponent();
15 this.Loaded += this.OnLoaded;
18 private void OnLoaded(
object? sender, EventArgs args)
20 this.Loaded -= this.OnLoaded;
21 this.PasswordEntry.Keyboard = ServiceRef.TagProfile.IsNumericPassword ? Keyboard.Numeric : Keyboard.Default;
22 this.PasswordEntry.Focus();