mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
added docs for KeyEventArgs to get rid of warnings
This commit is contained in:
@@ -1065,8 +1065,18 @@ namespace Terminal.Gui {
|
||||
SuperView?.SetFocus (this);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Specifies the event arguments for <see cref="KeyEvent"/>
|
||||
/// </summary>
|
||||
public class KeyEventEventArgs : EventArgs {
|
||||
/// <summary>
|
||||
/// Constructs.
|
||||
/// </summary>
|
||||
/// <param name="ke"></param>
|
||||
public KeyEventEventArgs(KeyEvent ke) => KeyEvent = ke;
|
||||
/// <summary>
|
||||
/// The <see cref="KeyEvent"/> for the event.
|
||||
/// </summary>
|
||||
public KeyEvent KeyEvent { get; set; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user