소스 검색

Add detail to this property's XmlDoc

Brandon Thetford 1 년 전
부모
커밋
f57ec92b15
1개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  1. 10 2
      Terminal.Gui/View/ViewSubViews.cs

+ 10 - 2
Terminal.Gui/View/ViewSubViews.cs

@@ -1,4 +1,4 @@
-namespace Terminal.Gui;
+namespace Terminal.Gui;
 
 public partial class View
 {
@@ -358,7 +358,15 @@ public partial class View
 
     private bool _oldCanFocus;
 
-    /// <inheritdoc/>
+    /// <summary>Gets or sets a value indicating whether this <see cref="View"/> can focus.</summary>
+    /// <remarks>
+    ///     Override of <see cref="Responder"/>.<see cref="Responder.CanFocus"/>.
+    ///     <para/>
+    ///     Get accessor directly returns <see cref="Responder"/>.<see cref="Responder.CanFocus"/>.
+    ///     <para/>
+    ///     Set accessor validates <see langword="value"/> before setting <see cref="Responder"/>.
+    ///     <see cref="Responder.CanFocus"/>.
+    /// </remarks>
     public override bool CanFocus
     {
         get => base.CanFocus;