From d69534823fd5622a9c89b8d89ca74ad7059c4c29 Mon Sep 17 00:00:00 2001 From: Brandon Thetford Date: Wed, 21 Feb 2024 03:25:44 -0700 Subject: [PATCH] Move this to its own file and inherit from EventArgs --- Terminal.Gui/Application.cs | 6 +----- Terminal.Gui/IterationEventArgs.cs | 5 +++++ 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 Terminal.Gui/IterationEventArgs.cs diff --git a/Terminal.Gui/Application.cs b/Terminal.Gui/Application.cs index ad40aebe9..b84c789f7 100644 --- a/Terminal.Gui/Application.cs +++ b/Terminal.Gui/Application.cs @@ -1843,8 +1843,4 @@ public static partial class Application } #endregion Keyboard handling -} - -/// Event arguments for the event. -public class IterationEventArgs -{ } +} \ No newline at end of file diff --git a/Terminal.Gui/IterationEventArgs.cs b/Terminal.Gui/IterationEventArgs.cs new file mode 100644 index 000000000..27887a4b5 --- /dev/null +++ b/Terminal.Gui/IterationEventArgs.cs @@ -0,0 +1,5 @@ +namespace Terminal.Gui; + +/// Event arguments for the event. +public class IterationEventArgs : EventArgs +{ }