Implemented interface member:
property
IsPassword
Microsoft.Maui.IEntry.IsPassword
5 references to IsPassword
Microsoft.Maui.Controls (3)
Entry\Entry.cs (3)
36 /// Backing store for the <see cref="IsPassword"/> property. 38 public static readonly BindableProperty IsPasswordProperty = BindableProperty.Create(nameof(IsPassword), typeof(bool), typeof(Entry), default(bool)); 121 /// <remarks>Toggling this value does not reset the contents of the entry, therefore it is advisable to be careful about setting <see cref="IsPassword"/> to false, as it may contain sensitive information.</remarks>
Microsoft.Maui.Controls.Compatibility (2)
Android\Renderers\EntryRenderer.cs (2)
364 if (model.IsPassword && ((EditText.InputType & InputTypes.ClassText) == InputTypes.ClassText)) 366 if (model.IsPassword && ((EditText.InputType & InputTypes.ClassNumber) == InputTypes.ClassNumber))