2011-10-31 67 views
0

我是textBox中的關鍵字,但是新行不會。我需要什麼。文本框中的新行

是否有解決方案?

+0

爲什麼你需要嗎? – sll

+0

在文本框中按下並轉到新行。 – mrJack

+0

@sll:我需要多行文本框 – mrJack

回答

1
<TextBox 
    Name="tbMultiLine" 
    TextWrapping="Wrap" 
    AcceptsReturn="True" 
    VerticalScrollBarVisibility="Visible" 
> 
    This TextBox will allow the user to enter multiple lines of text. When the RETURN key is pressed, 
    or when typed text reaches the edge of the text box, a new line is automatically inserted. 
</TextBox 

How to: Create a Multiline TextBox Control

1

使用文本塊,並設置您的XAML以下參數:

<TextBox name="textBox1" 
    TextWrapping="Wrap" 
    VerticalScrollBarVisibility="Visible" 
    AcceptsReturn="true"/>