robloo
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
src/Avalonia.Controls/TextBox.cs
|
|
@ -488,7 +488,8 @@ namespace Avalonia.Controls |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Gets or sets the maximum number of visible lines.
|
|
|
/// Gets or sets the maximum number of characters that the <see cref="TextBox"/> can accept.
|
|
|
|
|
|
/// This constraint only applies for manually entered (user-inputted) text.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public int MaxLength |
|
|
public int MaxLength |
|
|
{ |
|
|
{ |
|
|
@ -497,7 +498,7 @@ namespace Avalonia.Controls |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// Gets or sets the maximum number of lines the TextBox can contain
|
|
|
/// Gets or sets the maximum number of visible lines to size to.
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public int MaxLines |
|
|
public int MaxLines |
|
|
{ |
|
|
{ |
|
|
|