i am writing a small app to manage code snippets , so i want a component to display the code (keyword coloring , lines numbering ...) , so where to get this component and if it doesnt exist how to implement it .

edit : i dont want to write a code editor , only a component to display code with last features (keyword coloring , lines numbering ...) instead of plain text area thanks

link|improve this question

71% accept rate
I'm guessing you've already considered this, but just in case you haven't... why not use Visual Studio C# code editor? It already has a code snippets feature since VS 2005. msdn.microsoft.com/en-us/library/ms165392%28VS.80%29.aspx Why do you need to write your own C# code editor when existing editors already have the features you need? – Mark Byers Aug 7 '10 at 10:56
possible duplicate of Free/open source code editor UI control for .Net – Andrey Aug 7 '10 at 11:13
feedback

1 Answer

up vote 3 down vote accepted

For syntax highlighting check :

Syntax Highlighting in Rich TextBox Control

Syntax highlighting textbox in C#

How To Implement Syntax Highlighting In A WinForms Application

Also you can check there must be some 3rd party controls.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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