Click here to Skip to main content
15,891,184 members
Articles / Desktop Programming / Windows Forms

CodeBox for Windows Forms

Rate me:
Please Sign up or sign in to vote.
4.95/5 (29 votes)
12 Nov 2009CPOL11 min read 83.1K   2.4K   99  
A RichTextBox for Windows Forms that supports flexible highlighting and background coloring.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WinFormsColoredWordPad.Dialogs
{
    public partial class DiaLineNumbers : Form
    {
        public DiaLineNumbers()
        {
            InitializeComponent();
        }

        public List<int> LineNumbers
        {
            get
            {
                String[] strNums = txtLineNumbers.Text.Split(new string[1]{","},  StringSplitOptions.RemoveEmptyEntries);

                List<int> lines = new List<int>();
                foreach (string str in strNums)
                {
                    try
                    {
                        int line = int.Parse(str);
                        lines.Add (line);
                    }catch{}

                }
               
                return lines;
            }

        }
    }

    
}

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