在 wpf 文本框中开始新行
我使用 WPF 创建了一个小型 GUI,其中包含一个文本框。 我希望用户能够开始新的一行。 如何让用户在 WPF 文本框中开始新行(使用 \n 或 \r)? 我希望用户能够通过按“输入”开始新行。
I created a small GUI with WPF, containing a Textbox.
I want the user to have the ability to start a new line .
How do I let the user start a new line in the WPF textbox (with \n or \r)?
I want the user to be able to start a new line by pressing "enter".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否尝试在文本框上设置以下属性:
have you try set on your textbox following property:
文本框控件有一个“AcceptsReturn”属性(True/False),您需要将其设置为 True。
您可以在 Visual Studio IDE 属性框中设置它,也可以在代码中设置它。
The textbox control has an "AcceptsReturn" property (True/False) that you need to set to True.
You can set it in the Visual Studio IDE Properties box or you can set it within the code.
除了
AcceptReturn = true
属性之外,如果用户想要通过按 Enter 键开始新行,您还需要检查这些属性:IsReadOnly
应为 False。如果将其设置为 True,那么显然 Enter 键将不起作用。In addition to the
AcceptReturn = true
property, if the user wants to start a new line by pressing the enter key you will need to check these properties:IsReadOnly
should be False. If you set this to True, then obviously the Enter key won't work.