码迷,mamicode.com
首页 > 其他好文 > 详细

分段显示电话号码颜色

时间:2019-01-25 23:52:06      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:row   ext   技术分享   oid   private   send   color   col   csharp   

实现效果:

  技术分享图片

知识运用:

  RichTextBox控件的Select方法

  public void Select (int start, int length )

  SelectionColor属性

  public Color SelectionColor { get;   set; }

实现代码:

        private void Form1_Load(object sender, EventArgs e)
        {
            this.richTextBox1.Select(0,3);
            this.richTextBox1.SelectionColor = Color.Red;
            this.richTextBox1.Select(3,3);
            this.richTextBox1.SelectionColor = Color.Green;
            this.richTextBox1.Select(6,3);
            this.richTextBox1.SelectionColor = Color.Blue;
            this.richTextBox1.Select(9,3);
            this.richTextBox1.SelectionColor = Color.Brown;
        }

 

分段显示电话号码颜色

标签:row   ext   技术分享   oid   private   send   color   col   csharp   

原文地址:https://www.cnblogs.com/feiyucha/p/10322302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!