Fixes #4023 - Changes CommandEventArgs to be based on HandledEventArgs instead of CancelEventArgs (#4054)

* touching publish.yml

* CancelEventArgs->HandledEventArgs

* Fixed Handled issues
This commit is contained in:
Tig
2025-05-09 09:04:38 -06:00
parent e3e02e9218
commit 6f6c2d3320
51 changed files with 258 additions and 226 deletions

View File

@@ -200,7 +200,7 @@ public class TextFieldTests
void TextViewAccept (object sender, CommandEventArgs e)
{
tfAcceptedInvoked = true;
e.Cancel = handle;
e.Handled = handle;
}
}