2

で Intellisense を機能させる方法がわかりませんICSharpCode.TextEditor。今日の時点で、返信は不完全です。Web上では、サンプルはありません...

カスタム キーワードを含む補完ボックスを表示する必要があります。

何か助けはありますか?

4

1 に答える 1

3

I had the same problem a couple weeks ago and grabbed the sample app for ICSharpCode texteditor CodeComplete and was able to consolidated it all into one file

See here for my first pass at it: https://github.com/o2platform/FluentSharp_Fork.SharpDevelopEditor/blob/master/FluentSharp.SharpDevelopEditor/_O2SharpDevelop/CodeCompletion/O2CodeCompletion.cs

My objective at that stage was to create one file will all dependencies so that I could (for example) add code complete to any TextEditorControl control (I also had to make a couple changes to allow dynamic code complete updates from multiple source code files)

To use the O2ComdeCompletion.cs object just call:

o2CodeCompletion = new O2CodeCompletion( {your instance of TextEditorControl} );

于 2010-03-26T01:49:45.170 に答える