如何更改富文本框中新添加文本的颜色

发布于 2024-07-19 15:57:23 字数 330 浏览 6 评论 0原文

考虑我使用 C# VS 2005 构建的 Windows 应用程序在富文本框中显示某些内容。 现在,当我添加一些新文本时,它应该以不同的颜色显示。 即我需要区分以编程方式显示的文本和我在文本框中输入的文本。 我怎样才能做到这一点。?

即新插入文本的字体颜色应该与已经显示的文本不同。

PS:以前我使用过文本框并将其更改为富文本框,如下面的线程所示。 链接文本

Consider my windows application built using C# VS 2005 displays certain contents in a Rich Text Box. Now when i add some new text, it should appear in a different colour. i.e i need to differentiate the text which gets displayed programmatically and the text that i enter in the text box. how can i do this.?

i.e the font color of the newly inserted text should be different from the text that is already displayed.

PS: Previously i have used text box and changed it to rich text box as told in the below thread.
link text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初心未许 2024-07-26 15:57:24

IIRC,这有效:

  1. 将选择开始索引设置为最后一个字符。
  2. 更改选择颜色。
  3. 添加新文本。
  4. 重置选择颜色。

IIRC, this works:

  1. Set the selection start index to the last character.
  2. Change selection color.
  3. Add new text.
  4. Reset selection color.
熊抱啵儿 2024-07-26 15:57:24
private void richTextBox1_KeyPress(object sender, KeyPressEventArgs e)
    {            
        this.richTextBox1.SelectionColor = Color.Red;
    }

键盘插入的文本是红色的。

private void richTextBox1_KeyPress(object sender, KeyPressEventArgs e)
    {            
        this.richTextBox1.SelectionColor = Color.Red;
    }

Text inserted by keyboard is red.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文