Writing code editor - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-01T08:00:33Z http://stackoverflow.com/feeds/question/109288 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/109288/writing-code-editor 0 Writing code editor [closed] saner 2008-09-20T20:33:54Z 2008-09-20T20:48:00Z <p>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.</p> <p>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.</p> <p>Could you recommend me any design patterns, articles or books about writing code editor?</p> http://stackoverflow.com/questions/109288/writing-code-editor/109315#109315 3 Answer by PhiLho for Writing code editor PhiLho 2008-09-20T20:44:49Z 2008-09-20T20:44:49Z <p>In the <a href="http://scintilla.sourceforge.net/ScintillaRelated.html" rel="nofollow" title="Scintilla and SciTE Related Sites">Scintilla and SciTE Related Sites</a> 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).</p> http://stackoverflow.com/questions/109288/writing-code-editor/109324#109324 0 Answer by Kris for Writing code editor Kris 2008-09-20T20:46:59Z 2008-09-20T20:46:59Z <p>There's a really good open source C#/VB/XML editor that's been integrated into a project called <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a>. They've also published a <a href="http://www.icsharpcode.net/OpenSource/SD/InsideSharpDevelop.aspx" rel="nofollow">book</a> about their project, Probably one of the most complete writeups about a large-scale winform app ever written.</p> http://stackoverflow.com/questions/109288/writing-code-editor/109326#109326 3 Answer by Travis B. Hartwell for Writing code editor Travis B. Hartwell 2008-09-20T20:48:00Z 2008-09-20T20:48:00Z <p>Here's a book on the implementation of Sharp Develop: <a href="http://www.icsharpcode.net/OpenSource/SD/InsideSharpDevelop.aspx" rel="nofollow">Dissecting a C# Application: Inside Sharp Develop</a></p> <p>There is a link for a free PDF download of the book.</p> <p>Also, there is this question of Programming Reddit, that has some of the links I would have shared.: <a href="http://www.reddit.com/r/programming/comments/6fkki/ask_proggit_books_articles_papers_etc_on_text/" rel="nofollow">Ask proggit: books, articles, papers etc. on text editor implementation?</a></p>