TextBox.MaxLength Property
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets or sets the maximum number of characters that can be manually entered into the text box.
Namespace: System.Windows.Controls
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
[LocalizabilityAttribute(LocalizationCategory.None, Modifiability = Modifiability.Unmodifiable)] public int MaxLength { get; set; }
<object MaxLength="int" .../>
Property Value
Type: System.Int32The maximum number of characters that can be manually entered into the text box. The default is 0, which indicates no limit.
You can use this property to restrict the length of text entered in the control for values such as postal codes and telephone numbers. You can also use this property to restrict the length of text entered when the data is to be stored in a database so that the text entered into the control does not exceed the maximum length of the corresponding field in the database.
This property does not affect characters that are added programmatically.
When this property is set to 0, the maximum length of the text that can be entered in the control is limited only by available memory.
The following example shows how to create a TextBox with a MaxLength of 500 characters.
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <StackPanel> <TextBox Text="Initial text in TextBox" Width="200" TextAlignment="Center" TextWrapping="Wrap" MaxLength="500" MinLines="1" MaxLines="5" /> </StackPanel> </Page>
StackPanel myStackPanel = new StackPanel(); //Create TextBox TextBox myTextBox = new TextBox(); myTextBox.Width = 200; // Put some initial text in the TextBox. myTextBox.Text = "Initial text in TextBox"; // Set the maximum characters a user can manually type // into the TextBox. myTextBox.MaxLength = 500; myTextBox.MinLines = 1; // Set the maximum number of lines the TextBox will expand to // accomidate text. Note: This does not constrain the amount of // text that can be typed. To do that, use the MaxLength property. myTextBox.MaxLines = 5; // The text typed into the box is aligned in the center. myTextBox.TextAlignment = TextAlignment.Center; // When the text reaches the edge of the box, go to the next line. myTextBox.TextWrapping = TextWrapping.Wrap; myStackPanel.Children.Add(myTextBox); this.Content = myStackPanel;
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.