Explorar o código

Merge branch 'master' into progress

Charlie Kindel %!s(int64=5) %!d(string=hai) anos
pai
achega
300c8b2a84
Modificáronse 1 ficheiros con 10 adicións e 0 borrados
  1. 10 0
      Terminal.Gui/Core.cs

+ 10 - 0
Terminal.Gui/Core.cs

@@ -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; }
 		}