C# Textbox 自动换行
方法1
使用textbox
的AppendText
方法
方法2
textBox.ScrollToCaret();
this.textBox.Focus();//获取焦点
this.textBox.Select(this.textBox.TextLength,0);//光标定位到文本最后
this.textBox.ScrollToCaret();//滚动到光标处
如果你对本博客有任何的疑问或者建议,欢迎联系作者:QQ944273070
方法1
使用textbox
的AppendText
方法
方法2
textBox.ScrollToCaret();
this.textBox.Focus();//获取焦点
this.textBox.Select(this.textBox.TextLength,0);//光标定位到文本最后
this.textBox.ScrollToCaret();//滚动到光标处