Click here to Skip to main content
15,881,690 members
Articles / Desktop Programming / WPF

CodeBox 2: An Extended and Improved Version of the CodeBox with Line Numbers

Rate me:
Please Sign up or sign in to vote.
4.83/5 (20 votes)
10 Oct 2009CPOL9 min read 140K   3.4K   65  
A WPF textbox supporting line numbering, highlighting, underlines, and strikethroughs.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
namespace CodeBoxControl.Decorations
{
    /// <summary>
    /// Decoration based on index positions of a single string
    /// </summary>
 public   class StringDecoration:Decoration 
    {
     /// <summary>
     /// The string to be searched for 
     /// </summary>
        #region String
        public static DependencyProperty StringProperty = DependencyProperty.Register("String", typeof(String), typeof(RegexDecoration),
        new PropertyMetadata("", new PropertyChangedCallback(StringDecoration.OnStringChanged)));

        public String String
        {
            get { return (String)GetValue(StringProperty); }
            set { SetValue(StringProperty, value); }
        }

        private static void OnStringChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            if (e.NewValue != e.OldValue)
            {
                StringDecoration dObj = (StringDecoration)d;
                //dObj.IsDirty = true;
            }
        }

        #endregion
     /// <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>();
            if (Text != null && Text != "")
            {
                int index = Text.IndexOf(String, 0, StringComparison);
                while (index != -1)
                {
                    pairs.Add(new Pair(index, String.Length));
                    index = Text.IndexOf(String, index + String.Length, StringComparison);
                }
            }
            return pairs;
        }

        public override bool AreRangesSorted
        {
            get {return true; }
        }
    }
}

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