3

Is there any intellisense library for c# available to download?

I'd like to have a multi-line textbox in a winforms project which highlights c# keywords and (preferably) pops up a panel for listing possible keywords Just like VS IDE.

johnnyRose
  • 7,310
  • 17
  • 40
  • 61
Kamyar
  • 18,639
  • 9
  • 97
  • 171
  • 1
    This is probably is what you want http://stackoverflow.com/questions/1087735/a-textbox-richtextbox-that-has-syntax-highlighting-c – Tigran Aug 15 '11 at 17:03
  • If I google for "textbox intellisense" I get a lot of possible solutions :) see also http://stackoverflow.com/questions/767622/how-do-i-implement-intellisense-like-suggestion-boxes-for-a-winforms-textbox and http://www.codeproject.com/KB/WPF/Intellisense_popup.aspx – Matten Aug 15 '11 at 17:03
  • 1
    The other question (http://stackoverflow.com/questions/1087735/a-textbox-richtextbox-that-has-syntax-highlighting-c) asks for a syntax highlighter, but the accepted answer supports intellisense too. – jgauffin Aug 15 '11 at 17:08

1 Answers1

1

Check the C Sharp project on Code Project for Syntax Highlighting.

There is also a similar question asked on stack overflow: A textbox/richtextbox that has syntax highlighting? [C#] .

Other open source projects include:

dotNetFireball

Scintilla.NET

Editor.NET

Community
  • 1
  • 1
reggie
  • 13,313
  • 13
  • 41
  • 57