diff --git a/Terminal.Gui/Core.cs b/Terminal.Gui/Core.cs index 12cd26705..2bf0d78f7 100644 --- a/Terminal.Gui/Core.cs +++ b/Terminal.Gui/Core.cs @@ -1065,8 +1065,18 @@ namespace Terminal.Gui { SuperView?.SetFocus (this); } + /// + /// Specifies the event arguments for + /// public class KeyEventEventArgs : EventArgs { + /// + /// Constructs. + /// + /// public KeyEventEventArgs(KeyEvent ke) => KeyEvent = ke; + /// + /// The for the event. + /// public KeyEvent KeyEvent { get; set; } }