设置RichTextBox中的指定行为选中状态!!

设置richTextBox的属性HideSelection = false;


   
   
   
   
  1. ///
  2. /// 选中行
  3. ///
  4. /// 行号,从0开始
  5. private void selectLine(int line)
  6. {
  7. int a = this.richTextBox1.GetFirstCharIndexFromLine(line);
  8. int b = this.richTextBox1.GetFirstCharIndexFromLine(++line);
  9. if (a == -1)
  10. return;
  11. else if (b == -1)
  12. b = this.richTextBox1.TextLength - a;
  13. else
  14. b = b - a;
  15. this.richTextBox1.Select(a, b);
  16. }


RichTextBox单行文本颜色设置

富文本框以指定颜色输出指定文字
//输出消息

   
   
   
   
  1. private void OutMsg(RichTextBox rtb, string msg, Color color)
  2. {
  3. rtb.Invoke( new EventHandler( delegate
  4. {
  5. rtb.SelectionStart = rtb.Text.Length; //设置插入符位置为文本框末
  6. rtb.SelectionColor = color; //设置文本颜色
  7. rtb.AppendText(msg + "\r\n"); //输出文本,换行
  8. rtb.ScrollToCaret(); //滚动条滚到到最新插入行
  9. }));
  10. }


 

你可能感兴趣的:(C#)