Click here to Skip to main content
15,892,839 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;

namespace CodeBoxControl.Decorations
{
    /// <summary>
    /// Decoration based on index positions of a list of strings
    /// </summary>
  public   class MultiStringDecoration:Decoration 
    {
        private List<string> mStrings = new List<string>();
        /// <summary>
        /// The list of strings to be searched for 
        /// </summary>
        public List<string> Strings
        {
            get { return mStrings; }
            set { mStrings = value; }
        }
        /// <summary>
        /// The System.StringComparison value to be used in searching 
        /// </summary>
        public StringComparison StringComparison { get; set; }
        public override List<Pair> Ranges(string Text)
        {
            List<Pair> pairs = new List<Pair>();
            foreach (string word in mStrings)
            {
                int index = Text.IndexOf(word, 0, StringComparison);
                while (index != -1)
                {
                    pairs.Add(new Pair(index, word.Length));
                    index = Text.IndexOf(word, index + word.Length, StringComparison);
                }
            }
            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