Is it possible to add items to Visual Studio IntelliSense™ drop-down?

你说的曾经没有我的故事 提交于 2019-12-01 16:24:31

问题


I've found examples of how to implement full IntelliSense™ providers for specific file-types in VS2010, like for Ruby or Python or whatever. What I want to do is hook into the existing IntelliSense™ for C# or VB.NET and add additional items into the list that is already generated by Visual Studio. (Basically, I want to inject database-driven items into the IntelliSense™ for Simple.Data objects.)

Is this actually possible, and if so, how do I go about it?


回答1:


Look at:

XML Editor IntelliSense Features and where to put the new schema for intellisense: Schema Cache

To answer the comment:

I just found this on stackoverflow: How do i implement intellisense for my language in visual studio?

Here is someone that implemented ADT support (android dev in Visual Studio). Maybe you can get some ideas from it:

VS ADT



来源:https://stackoverflow.com/questions/6910525/is-it-possible-to-add-items-to-visual-studio-intellisense-drop-down

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!