で Intellisense を機能させる方法がわかりませんICSharpCode.TextEditor
。今日の時点で、返信は不完全です。Web上では、サンプルはありません...
カスタム キーワードを含む補完ボックスを表示する必要があります。
何か助けはありますか?
で Intellisense を機能させる方法がわかりませんICSharpCode.TextEditor
。今日の時点で、返信は不完全です。Web上では、サンプルはありません...
カスタム キーワードを含む補完ボックスを表示する必要があります。
何か助けはありますか?
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} );