本文介绍了使用C#在运行时在RichTextBox文本中添加分隔符/行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在RichTextbox中输入文本之间的分隔符.就像

richTextBox1.AppendText("From:");
richTextBox1.AppendText("\ n" + strFrom +");
richTextBox1.AppendText("\ nTo:");
richTextBox1.AppendText("\ n" + strTo +");


在这个地方,我想添加一条灰色分隔线以区分标题部分和消息正文中的标题部分


richTextBox1.AppendText("\ n \ n" + strMessageBody +"\ n");



如何使用C#以编程方式添加

I need to enter a separator in RichTextbox between text.. Just Like

richTextBox1.AppendText("From:");
richTextBox1.AppendText("\n" + strFrom + "");
richTextBox1.AppendText("\nTo:");
richTextBox1.AppendText("\n" + strTo + "");


And on this place i want to add a gray separator line to differentiate the header part from the from the Message body


richTextBox1.AppendText("\n\n" + strMessageBody + "\n");



how can i add programmatically using C# ??

推荐答案



这篇关于使用C#在运行时在RichTextBox文本中添加分隔符/行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 15:05