0
Q
文本框中的新行
A
回答
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
1
使用文本塊,並設置您的XAML以下參數:
<TextBox name="textBox1"
TextWrapping="Wrap"
VerticalScrollBarVisibility="Visible"
AcceptsReturn="true"/>
相關問題
- 1. VB.NET文本框列表框中新行
- 2. 帶返回文本框中的新行
- 3. winform中文本框的新行
- 4. 新行文本框 - iPhone
- 5. 在wpf文本框中開始新行
- 6. 如何在文本框的文本中添加新行?
- 7. 文本框中的換行
- 8. 在ASP.NET文本框中更新文本
- 9. 對話框中的多行文本框
- 10. 關於帶文本框的html行的克隆新文本框的觸發器
- 11. Gridview行更新問題與文本框
- 12. VBA:文本框新/下一行
- 13. 向文本框添加新行數據
- 14. WPF更新文本框,而backgroundworker運行
- 15. 更新文本框的文本
- 16. 刷新文本框
- 17. 更新文本框
- 18. 刷新文本框
- 19. 如何在新行中獲取detailsview中的文本框?
- 20. 多行文本框中的當前行
- 21. 文本框不生成文本框中的行情
- 22. 新線的文本框
- 23. 更新文本框的值
- 24. 更新文本框的值
- 25. 更新文本框的值
- 26. Jquery - 使用另一個文本框的值在運行時更新文本框
- 27. 防止多行文本框中出現新行
- 28. AS3輸入文本框獲得用\ n換行的每條新行的文本
- 29. 更新WINAPI中的文本框項目
- 30. 更新文本框中的textbox.text
爲什麼你需要嗎? – sll
在文本框中按下並轉到新行。 – mrJack
@sll:我需要多行文本框 – mrJack