方法1
使用textbox
的AppendText
方法
方法2
textBox.ScrollToCaret();
this.textBox.Focus();//获取焦点
this.textBox.Select(this.textBox.TextLength,0);//光标定位到文本最后
this.textBox.ScrollToCaret();//滚动到光标处
2022-12-03 13:51:55
方法1
使用textbox
的AppendText
方法
方法2
textBox.ScrollToCaret();
this.textBox.Focus();//获取焦点
this.textBox.Select(this.textBox.TextLength,0);//光标定位到文本最后
this.textBox.ScrollToCaret();//滚动到光标处
下一篇:wpf binging(三)