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

@@ -254,7 +254,7 @@ namespace Terminal.Gui.ViewTests {
public void PositionChanged_Event ()
{
var hv = new HexView (LoadStream ()) { Width = Dim.Fill (), Height = Dim.Fill () };
HexView.HexViewEventArgs hexViewEventArgs = null;
HexViewEventArgs hexViewEventArgs = null;
hv.PositionChanged += (s, e) => hexViewEventArgs = e;
Application.Top.Add (hv);
Application.Begin (Application.Top);