飘易博客(作者:Flymorn)
订阅《飘易博客》RSS,第一时间查看最新文章!
飘易首页 | 留言本 | 关于我 | 订阅Feed

C#向RichTextBox写入数据并始终显示在最下方

Author:飘易 Source:飘易
Categories:C#编程 PostTime:2012-11-22 14:40:26
正 文:
    C#中经常用到RichTextBox控件,用于显示数据,那么如果在写入数据后,让RichTextBox始终得到焦点或让RichTextBox始终显示最下方的最新数据呢?

    以前飘易一般用到的方法是使用 Focus 先获取焦点,然后 Select 方法,滚动到最下方,这样效率不免低下,而且多写代码:

richTextBox1.Focus() ;
richTextBox1.Select(richTextBox1.Text.Length, 0);

    参考这样的自动滚动到最下方的事件函数:

private void richTextBox1_TextChanged(object sender, EventArgs e)
        {//滚动到最下方
            if (richTextBox1.Lines.Length > 8000)
            {
                int n = 3000;
                int start = richTextBox1.GetFirstCharIndexFromLine(0);//第一行第一个字符的索引
                int end = richTextBox1.GetFirstCharIndexFromLine(n);//第n行第一个字符的索引
                richTextBox1.Select(start, end);//选中N行
                richTextBox1.SelectedText = "";//设置前N行的内容为空
            }
             richTextBox1.Focus() ;
             richTextBox1.Select(richTextBox1.Text.Length, 0);
        }

    实际上有更简单的方法,用 RichTextBox.AppendText 方法追加数据后,只要再设置 RichTextBox 的 HideSelection 属性为 false 即可

    RichTextBox.HideSelection 属性是继承自 TextBoxBase
“Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the control loses focus.”

    当RichTextBox.HideSelection值为
true, the selected text does not appear highlighted when the text box control loses focus; 
false, the selected text remains highlighted when the text box control loses focus. 
The default is true.

    意思就是,当RichTextBox.HideSelection为flase时,无论 RichTextBox 是否获取焦点,RichTextBox控件都将被重点强调并显示,相当于始终有焦点的效果,这样就实现了 RichTextBox.AppendText 追加数据后,自动滚动到最下方的效果了。
作者:飘易
来源:飘易
版权所有。转载时必须以链接形式注明作者和原始出处及本声明。
上一篇:c#多线程频繁操作同一控件“未将对象引用设置到对象的实例”
下一篇:iframe下JS跨域的方法
1条评论 “C#向RichTextBox写入数据并始终显示在最下方”
1 FishCat233
2022-2-11 17:07:04
可以。。。。。。。。
发表评论
名称(*必填)
邮件(选填)
网站(选填)

记住我,下次回复时不用重新输入个人信息
© 2007-2019 飘易博客 Www.Piaoyi.Org 原创文章版权由飘易所有