C#如何设置textbox的滚动条一直在最下面?

2024-10-29 10:47:47
推荐回答(2个)
回答1:

this.textBox1.Focus();//获取焦点
this.textBox1.Select(this.textBox1.TextLength, 0);//光标定位到文本最后
this.textBox1.ScrollToCaret();//滚动到光标处

回答2:

textBox1.SelectionStart = textBox1.Text.Length; //设定光标位置
textBox1.ScrollToCaret(); //滚动到光标处