TextBox.MaxLines Proprietà

Definizione

Ottiene o imposta il numero massimo di righe visibili.

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

Valore della proprietà

Il numero massimo di righe visibili. Il valore predefinito è Int32.MaxValue.

Eccezioni

MaxLines è minore di MinLines.

Esempio

Nell'esempio seguente viene illustrato come creare un TextBox oggetto con un MaxLines valore pari a 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

Commenti

Ottenere questa proprietà restituisce il valore corrente di MaxLines. Se si imposta questa proprietà, la casella di testo viene ridimensionata se il numero di righe visibili supera il limite specificato da MaxLines.

Questa proprietà si applica solo alle righe visibili e non vincola il numero effettivo di righe. A seconda della configurazione, una casella di testo può contenere righe aggiuntive non visibili accessibili tramite scorrimento.

Se la Height proprietà viene impostata in modo esplicito su , TextBoxi valori delle MaxLines proprietà e MinLines vengono ignorati.

Informazioni proprietà di dipendenza

Campo Identificatore MaxLinesProperty
Proprietà dei metadati impostate su true AffectsMeasure

Si applica a

Vedi anche