In the middle of another refactoroing

This commit is contained in:
Tig
2024-10-05 12:43:09 -06:00
parent 3649a047f2
commit af110d92d0
103 changed files with 582 additions and 487 deletions

View File

@@ -19,13 +19,13 @@ internal partial class LoginView : IRecipient<Message<LoginActions>>
{
ViewModel.Password = passwordInput.Text;
};
loginButton.Accept += (_, _) =>
loginButton.Accepted += (_, _) =>
{
if (!ViewModel.CanLogin) { return; }
ViewModel.LoginCommand.Execute (null);
};
clearButton.Accept += (_, _) =>
clearButton.Accepted += (_, _) =>
{
ViewModel.ClearCommand.Execute (null);
};