我正在尝试将此字符串的"You >>"
部分加粗以显示在富文本框中。
以下是我单击邮件发送按钮时的代码。 displayBox
是字符串的粗体,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 = "";
}
任何帮助都会很棒。
答案 0 :(得分: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");
}
我希望这能为任何有类似问题的人提供一些帮助!
:丹
答案 1 :(得分:1)