Новая строка в текстовом поле - PullRequest
0 голосов
/ 31 октября 2011

Я Inter-key в textBox. Но новой строки не будет. Что мне нужно.

Есть ли решение?

Ответы [ 2 ]

1 голос
/ 31 октября 2011
<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

См. Как: создать многострочный элемент управления TextBox

1 голос
/ 31 октября 2011

Используйте текстовый блок и установите следующие параметры в вашем XAML:

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