You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current behaviour of IsPasswordRevealButtonEnabled is:
when false: The inline reveal-button is never shown;
when true: The inline reveal-button is shown only when the input is done on its initial focus while empty.
I do believe it might be favourable to add a third option that permanently displays the inline reveal-button.
enum PasswordRevealButtonMode
{
Hidden, // current 'false'
Auto, // current 'true'
Visible // show permantly
}
This would eliminate the necessity of manually setting up an external control to regulate the reveal mode, as suggested in the WinUI 2 Gallery.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The current behaviour of
IsPasswordRevealButtonEnabled
is:when
false
: The inline reveal-button is never shown;when
true
: The inline reveal-button is shown only when the input is done on its initial focus while empty.I do believe it might be favourable to add a third option that permanently displays the inline reveal-button.
This would eliminate the necessity of manually setting up an external control to regulate the reveal mode, as suggested in the WinUI 2 Gallery.
Beta Was this translation helpful? Give feedback.
All reactions