我正在使用一个计时器将文本附加到richtextbox中并自动滚动到底部:
private Timer timer = new Timer();
public Form1()
{
InitializeComponent();
timer.Tick += AutoAppendText;
timer.Interval = 500;
timer.Start();
}
private void AutoAppendText(object sender, EventArgs e)
{
richTextBox.AppendText($"{DateTime.Now:hh:mm:ss.fff} : Hello");
richTextBox1.ScrollToCaret();
}
字符串
我希望当我向上滚动时,有没有什么方法可以关闭自动滚动到插入符号。
1条答案
按热度按时间hrysbysz1#
字符串