소스 검색

Update TextBox.cs

Symbai 5 년 전
부모
커밋
dc8881c846
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      src/Avalonia.Controls/TextBox.cs

+ 6 - 0
src/Avalonia.Controls/TextBox.cs

@@ -275,11 +275,17 @@ namespace Avalonia.Controls
             }
         }
 
+        /// <summary>
+        /// Gets or sets the horizontal alignment of the content within the control.
+        /// </summary>
         public HorizontalAlignment HorizontalContentAlignment
         {
             get { return GetValue(HorizontalContentAlignmentProperty); }
             set { SetValue(HorizontalContentAlignmentProperty, value); }
         }
+        /// <summary>
+        /// Gets or sets the vertical alignment of the content within the control.
+        /// </summary>
         public VerticalAlignment VerticalContentAlignment
         {
             get { return GetValue(VerticalContentAlignmentProperty); }