Click here to Skip to main content
15,896,207 members
Articles / Desktop Programming / WPF

CodeBox

Rate me:
Please Sign up or sign in to vote.
4.91/5 (34 votes)
10 Mar 2009CPOL7 min read 99K   2.3K   95  
A fast WPF textbox control with support for text coloring, highlighting, underlines, and strikethroughs.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace CodeBoxControl.Decorations
{
 public  class MultiRegexDecoration: Decoration 
    {
     private List<string> mRegexStrings = new List<string>();
     /// <summary>
     /// List of Strings defining the regular expressions
     /// </summary>
        public List<string> RegexStrings
        {
            get { return mRegexStrings; }
            set { mRegexStrings = value; }
        }

        public override List<Pair> Ranges(string Text)
        {
            List<Pair> pairs = new List<Pair>();
            foreach (string rString in mRegexStrings)
            {
                
                Regex rx = new Regex(rString);
                MatchCollection mc = rx.Matches(Text);
                foreach (Match m in mc)
                {
                    pairs.Add(new Pair(m.Index, m.Length));
                }
            }
            return pairs;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Written software for what seems like forever. I'm currenly infatuated with WPF. Hopefully my affections are returned.

Comments and Discussions