TextBox.MaxLines Propriété

Définition

Obtient ou définit le nombre maximal de lignes 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

Valeur de propriété

Nombre maximal de lignes visibles. La valeur par défaut est Int32.MaxValue.

Exceptions

MaxLines est inférieur à MinLines.

Exemples

L’exemple suivant montre comment créer un TextBox avec un MaxLines valeur 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

Remarques

L’obtention de cette propriété retourne la valeur actuelle de MaxLines. La définition de cette propriété entraîne le redimensionnement de la zone de texte si le nombre de lignes visibles dépasse la limite spécifiée par MaxLines.

Cette propriété s’applique uniquement aux lignes visibles et ne limite pas le nombre réel de lignes. Selon sa configuration, une zone de texte peut contenir des lignes non visibles supplémentaires accessibles en faisant défiler.

Si la Height propriété est explicitement définie sur un TextBox, les valeurs de propriété MaxLines et MinLines sont ignorées.

Informations sur les propriétés de dépendance

Champ Identificateur MaxLinesProperty
Propriétés de métadonnées définies sur true AffectsMeasure

S’applique à

Voir aussi