add readonly password reveal

This commit is contained in:
TheXamlGuy
2024-07-06 17:01:50 +01:00
parent 0507c21a43
commit ee79b97416
18 changed files with 212 additions and 24 deletions
+3 -1
View File
@@ -14,7 +14,9 @@ public partial class MaskedTextEntryViewModel(IServiceProvider provider,
string pattern,
string key,
string value,
double width) : ItemEntryViewModel<string>(provider, factory, mediator, publisher, subscriber, disposer, state, configuration, key, value, width)
bool isConcealed,
bool isRevealed,
double width) : ItemEntryViewModel<string>(provider, factory, mediator, publisher, subscriber, disposer, state, configuration, key, value, isConcealed, isRevealed, width)
{
[ObservableProperty]
private string pattern = pattern;