Я Inter-key в textBox. Но новой строки не будет. Что мне нужно.
Есть ли решение?
<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
Используйте текстовый блок и установите следующие параметры в вашем XAML:
<TextBox name="textBox1" TextWrapping="Wrap" VerticalScrollBarVisibility="Visible" AcceptsReturn="true"/>