Miguel de Icaza 7 سال پیش
والد
کامیت
0a654c1643
1فایلهای تغییر یافته به همراه12 افزوده شده و 0 حذف شده
  1. 12 0
      Terminal.Gui/Core.cs

+ 12 - 0
Terminal.Gui/Core.cs

@@ -21,8 +21,20 @@ using NStack;
 
 namespace Terminal.Gui {
 
+	/// <summary>
+	/// Responder base class implemented by objects that want to participate on keyboard and mouse input.
+	/// </summary>
 	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; }
+
+		/// <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; }
 
 		// Key handling