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

设置richTextBox的属性HideSelection = false;


 
 
  1. /// <summary>
  2. /// 选中行
  3. /// </summary>
  4. /// <param name="line">行号,从0开始</param>
  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. }


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值