vote up 0 vote down star

I'd like to write code editor in C#. I've read Design Patterns and it seems that Composite, Flyweight and Decorator patterns might be useful.

I've also checked source code of Sharp Develop, however the code documentation is very weak. That is the reason I don't want to read source code of open source projects.

Could you recommend me any design patterns, articles or books about writing code editor?

flag
"I'd like to build a car using metal. I have a box of wrenches, and it seems they might be useful. I've also looked at the design of existing vehicles, but the repair manuals are very weak. " – Shog9 Sep 20 '08 at 20:47
Good luck, PhiLho, Kris and Travis B. Hartwell have really helped me. Sometimes, you just need a little bit to start something new. – saner Sep 20 '08 at 21:26

closed as not a real question by Shog9 Sep 20 '08 at 20:46

3 Answers

vote up 3 vote down check

Here's a book on the implementation of Sharp Develop: Dissecting a C# Application: Inside Sharp Develop

There is a link for a free PDF download of the book.

Also, there is this question of Programming Reddit, that has some of the links I would have shared.: Ask proggit: books, articles, papers etc. on text editor implementation?

link|flag
vote up 3 vote down

In the Scintilla and SciTE Related Sites page, you can find other editing components, and a Document section pointing to some resources on design of such component. Note that Scintilla has a .Net encapsulation (ScintillaNet).

link|flag
vote up 0 vote down

There's a really good open source C#/VB/XML editor that's been integrated into a project called SharpDevelop. They've also published a book about their project, Probably one of the most complete writeups about a large-scale winform app ever written.

link|flag

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