Version 3.0.374

This commit is contained in:
Anja 2023-09-28 15:37:44 +02:00
parent 06428d96d9
commit 63aa608216
21 changed files with 243 additions and 214 deletions

View file

@ -143,6 +143,8 @@ namespace TINK.ViewModel
{
l_oPropertyChanged(this, new PropertyChangedEventArgs(nameof(IsLoggedOut)));
l_oPropertyChanged(this, new PropertyChangedEventArgs(nameof(IsLoginRequestAllowed)));
l_oPropertyChanged(this, new PropertyChangedEventArgs(nameof(MailAddress)));
l_oPropertyChanged(this, new PropertyChangedEventArgs(nameof(Password)));
}
}
@ -377,6 +379,10 @@ namespace TINK.ViewModel
title,
string.Format(AppResources.MessageLoginWelcome, TinkApp.ActiveUser.Mail),
AppResources.MessageAnswerOk);
//clear MailAdress and Password user input
MailAddress = string.Empty;
Password = string.Empty;
}
catch (Exception p_oException)
{