Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a RichTextBox with syntax highlighting! Sounds easy but I'm searching since months and didn't find that what I need.

First I started to do it by myself... No good idea...

I tried to use this: http://blogs.microsoft.co.il/blogs/tamir/archive/2006/12/14/RichTextBox-syntax-highlighting.aspx

but that code don't handle loading files or pasting so i started to write a highlight function for inserting text-blocks. That tutorial and my code worked fine first, but then I saw a lot of tiny bugs and loading large files took too much time.

Then a found a lot of similar tutorials/codes at codeproject.com like this: http://www.codeproject.com/KB/edit/SyntaxHighlighting.aspx

But there I get problems if the file becomes large, too. Pasting and loading files will take a while...

I think I'm searching for something like this: http://www.aqistar.com/

But I don't can spent money and I want to sell my program maybe so the code/control should be free.

Can anybody help me?

share|improve this question

2 Answers

up vote 15 down vote accepted

AvalonEdit is the WPF-based text editor used in SharpDevelop 4.0. It has built-in support for syntax highlighting for several languages and you can add new highlighting definitions using an XML-based file format.

AvalonEdit is open-source, but can also be used in commercial applications (LGPL).

If you don't want to use WPF, you could also use ICSharpCode.TextEditor, the old Windows Forms text editor from SharpDevelop 3.x.

share|improve this answer
Can I use WPF AvalonEdit in my winforms application ?? any tips ?? – Kiquenet Jan 12 '11 at 11:07

Give a look to these open source projects:

share|improve this answer

protected by Robert Harvey Oct 16 '12 at 21:26

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.