Преглед на файлове

Move this to its own file and inherit from EventArgs

Brandon Thetford преди 1 година
родител
ревизия
d69534823f
променени са 2 файла, в които са добавени 6 реда и са изтрити 5 реда
  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
-}
-
-/// <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
+{ }