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(); //滚动到光标处