Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本框,它的多行属性设置为 true,然后将其拖出。就目前而言,每当我键入并且下一个单词将超出文本框的边界时,它将创建一个新行。我希望能够在不添加新行的情况下继续输入。
就像在记事本中一样,当您要在框的边界之外书写时,它会让您继续输入,并且在您按下回车之前不会从新行开始。相反,您可以只使用滚动条在文本之间水平滚动。我如何用文本框做到这一点?
尝试关闭自动换行功能:
textBox1.WordWrap = false;