Przeglądaj źródła

Update TextBox.cs

Symbai 5 lat temu
rodzic
commit
dc8881c846
1 zmienionych plików z 6 dodań i 0 usunięć
  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); }