1

我正在尝试加粗"You >>"此字符串的一部分以显示在富文本框中。

以下是单击消息发送按钮时的代码。displayBox是 id 像字符串一样加粗entryBox的地方,是用户输入消息的地方。

        private void button1_Click(object sender, EventArgs e)
    {
        listData.Add(entryBox.Text);
        // Remove the linebreak caused by pressing return
        SendKeys.Send("\b");


        // Empty the array string
        ArrayData = "";

        // Bold the You >>
        displayBox.SelectionStart = 0;
        displayBox.SelectionLength = 6;
        displayBox.SelectionFont = new Font(displayBox.Font, FontStyle.Bold);
        displayBox.SelectionLength = 0;

        foreach (string textItem in listData)
        {
            ArrayData = ArrayData + "You >> " + textItem + "\r\n";
        }
        entryBox.Focus();
        displayBox.Text = "";
        displayBox.Refresh();
        displayBox.Text = ArrayData;
        entryBox.Text = "";

    }

任何帮助都会很好。

4

2 回答 2

5

在评论中@dash 的链接的帮助下,这个问题得到了解决。链接: http: //msmvps.com/blogs/deborahk/archive/2009/10/31/richtextbox-styles.aspx

这是我的代码,因为它现在代表同一个按钮(尽管我已经重命名了它)。这可能不是这个问题的最干净的解决方案,但我达到了预期的结果,所以我很满意。评论中对此进行了解释。

        private void send_Click(object sender, EventArgs e)
    {
        if (entryBox.Text != "")
        {
            listData.Add(entryBox.Text);
            // Remove the linebreak caused by pressing return
            SendKeys.Send("\b");

            // Empty the array string
            ArrayData = "";

            foreach (string textItem in listData)
            {
                ArrayData = ArrayData + "You >> " + textItem + "\r\n";
            }
            entryBox.Focus();
            displayBox.Text = "";
            displayBox.Refresh();
            displayBox.Text = ArrayData;

            // Format the "You >>"
            displayBox.SelectionStart = 0;
            displayBox.SelectionLength = 6;
            displayBox.SelectionFont = new Font(displayBox.Font, FontStyle.Bold);
            displayBox.SelectionColor = Color.Crimson;
            displayBox.SelectionLength = 0;
            string wordToFind = "You >>";
            int startIndex = 0;
            while (startIndex > -1)
            {
                startIndex = displayBox.Find(wordToFind, startIndex + 1,
                                displayBox.Text.Length,
                                RichTextBoxFinds.WholeWord);
                if (startIndex > -1)
                {
                    displayBox.Select(startIndex, wordToFind.Length);
                    displayBox.SelectionFont = new Font(displayBox.Font, FontStyle.Bold);
                    displayBox.SelectionColor = Color.Crimson;
                }
            }
            // Reset the entry box to empty
            entryBox.Text = "";

        }
        // Remove the linebreak caused by pressing return
        SendKeys.Send("\b");
    }

我希望这能为任何有类似问题的人提供一些帮助!

: 丹

于 2012-05-01T07:51:18.150 回答
1

试试这个: http: //www.codeproject.com/Articles/37668/Multiple-Colored-Texts-in-RichTextBox-using-C

或者这个:http ://www.codeproject.com/Articles/15038/C-Formatting-Text-in-a-RichTextBox-by-P​​arsing-the

我想我用过一个,不记得是哪个,但我成功了。

于 2012-04-30T13:06:49.277 回答