Move all nested eventargs out of parent classes to root

This commit is contained in:
tznind
2023-03-15 19:35:21 +00:00
parent 53597b7cec
commit 2ed71e284c
60 changed files with 983 additions and 791 deletions

View File

@@ -582,7 +582,7 @@ namespace Terminal.Gui.ApplicationTests {
int keyUps = 0;
var output = string.Empty;
Application.Top.KeyUp += (object sender, View.KeyEventEventArgs args) => {
Application.Top.KeyUp += (object sender, KeyEventEventArgs args) => {
if (args.KeyEvent.Key != (Key.CtrlMask | Key.Q)) {
output += (char)args.KeyEvent.KeyValue;
}