Browse Source

Update TextBox.cs

Symbai 5 năm trước cách đây
mục cha
commit
dc8881c846
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  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); }