do you know any text editor project with c#

  • Thread starter Thread starter 2003et
  • Start date Start date
2

2003et

I have to include a text editor in my project. Do you know any good editor
project on the net?

Thanks
 
Chris Taylor said:
Hi,

The SharpDevelop project has a complete code editor and it is not to
involved to us the editor in your own project. I am not sure what the
licencing issues would be though.

http://www.icsharpcode.net/OpenSource/SD/Default.aspx

Hope this helps

Chris Taylor

I would second this! I've used the TextAreaControl from SharpDevelop in
SqlBuddy (sqlbuddy.sourceforge.net). The editor control compiles to a single
DLL that can be included in your project. You can write custom syntax
highlighting files for it, enable/disable visible spaces, folding and more.
Also, if you browse the source for SharpDevelop you can see how to achive
things such as error underlining, tooltips over individual words etc. It's
all funky stuff! As Chris says, licensing may be an issue.

Tobin Harris
 
Back
Top