Browse Source

More docs

Miguel de Icaza 7 years ago
parent
commit
0a654c1643
1 changed files with 12 additions and 0 deletions
  1. 12 0
      Terminal.Gui/Core.cs

+ 12 - 0
Terminal.Gui/Core.cs

@@ -21,8 +21,20 @@ using NStack;
 
 
 namespace Terminal.Gui {
 namespace Terminal.Gui {
 
 
+	/// <summary>
+	/// Responder base class implemented by objects that want to participate on keyboard and mouse input.
+	/// </summary>
 	public class Responder {
 	public class Responder {
+		/// <summary>
+		/// Gets or sets a value indicating whether this <see cref="T:Terminal.Gui.Responder"/> can focus.
+		/// </summary>
+		/// <value><c>true</c> if can focus; otherwise, <c>false</c>.</value>
 		public virtual bool CanFocus { get; set; }
 		public virtual bool CanFocus { get; set; }
+
+		/// <summary>
+		/// Gets or sets a value indicating whether this <see cref="T:Terminal.Gui.Responder"/> has focus.
+		/// </summary>
+		/// <value><c>true</c> if has focus; otherwise, <c>false</c>.</value>
 		public virtual bool HasFocus { get; internal set; }
 		public virtual bool HasFocus { get; internal set; }
 
 
 		// Key handling
 		// Key handling