TextBox.MaxLines Propiedad

Definición

Obtiene o establece el número máximo de líneas visibles.

public:
 property int MaxLines { int get(); void set(int value); };
public int MaxLines { get; set; }
member this.MaxLines : int with get, set
Public Property MaxLines As Integer

Valor de propiedad

El número máximo de líneas visibles. El valor predeterminado es Int32.MaxValue.

Excepciones

MaxLines es menor que MinLines.

Ejemplos

En el ejemplo siguiente se muestra cómo crear un objeto TextBox con un MaxLines valor de 5.

<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;
Dim myStackPanel As New StackPanel()

'Create TextBox
Dim myTextBox As 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)
Me.Content = myStackPanel

Comentarios

La obtención de esta propiedad devuelve el valor actual de MaxLines. Establecer esta propiedad hace que el cuadro de texto cambie el tamaño si el número de líneas visibles supera el límite especificado por MaxLines.

Esta propiedad solo se aplica a las líneas visibles y no restringe el número real de líneas. En función de su configuración, un cuadro de texto puede contener líneas adicionales no visibles a las que se puede acceder mediante el desplazamiento.

Si la Height propiedad se establece explícitamente en , TextBoxse omiten los valores de propiedad MaxLines y MinLines .

Información sobre propiedades de dependencia

Campo identificador MaxLinesProperty
Propiedades de metadatos establecidas en true AffectsMeasure

Se aplica a

Consulte también