浏览代码

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
+{ }