是否可以在Visual Studio IntelliSense™下拉菜单中添加项目?

问题描述:

我发现了一些示例,这些示例说明了如何在VS2010中为特定文件类型实现完整的IntelliSense™提供程序,例如Ruby或Python或其他任何类型.我想要做的是插入现有的IntelliSense™for C#或VB.NET,并将其他项添加到Visual Studio已经生成的列表中. (基本上,我想将数据库驱动的项目注入到用于Simple.Data对象的IntelliSense™中.)

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?

查看:

XML编辑器的IntelliSense功能以及放置新架构的位置智能提示:架构缓存

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

要回答评论:

我刚刚在*上找到了这个: 如何在视觉上实现我的语言的智能感知工作室?

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

这里是实现ADT支持的人(Visual Studio中的Android开发人员).也许您可以从中得到一些想法:

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

VS ADT