Browse Source

Move this to its own file and inherit from EventArgs

Brandon Thetford 1 year ago
parent
commit
d69534823f
2 changed files with 6 additions and 5 deletions
  1. 1 5
      Terminal.Gui/Application.cs
  2. 5 0
      Terminal.Gui/IterationEventArgs.cs

+ 1 - 5
Terminal.Gui/Application.cs

@@ -1843,8 +1843,4 @@ public static partial class Application
     }
     }
 
 
     #endregion Keyboard handling
     #endregion Keyboard handling
-}
-
-/// <summary>Event arguments for the <see cref="Application.Iteration"/> event.</summary>
-public class IterationEventArgs
-{ }
+}

+ 5 - 0
Terminal.Gui/IterationEventArgs.cs

@@ -0,0 +1,5 @@
+namespace Terminal.Gui;
+
+/// <summary>Event arguments for the <see cref="Application.Iteration"/> event.</summary>
+public class IterationEventArgs : EventArgs
+{ }