How to implement syntax highlighting and autocomplete function in a C # .NET GUI application?

I am a new C # programmer. I want to make an editor such as an application that will highlight codes (syntax highlighting) and have an automatic completion function for variable functions, etc. .... I have no idea what to do. Can you provide me some links to tutorials or some tips on this? Can I implement these features in the Rich Text Box?

+3
source share
2 answers

The SharpDevelop IDE open source text editor component is free to download and use. It supports all your requirements. See http://www.codeproject.com/KB/edit/TextEditorControl.aspx for an explanation of how this can be done.

+7
source

At the top of my head there are three open source text editor controls that you can download:

I am sure that there are others, but they are pretty tried and tested.

+3
source

Source: https://habr.com/ru/post/1772233/


All Articles