是否可以将项目添加到 Visual Studio IntelliSense?下拉?
我找到了如何在 VS2010 中为特定文件类型(例如 Ruby 或 Python 等)实现完整 IntelliSense™ 提供程序的示例。我想要做的是连接到现有的 C# 或 VB.NET IntelliSense™,并将其他项目添加到 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看:
XML 编辑器 IntelliSense 功能以及放置新架构的位置对于智能感知: 架构缓存
回答评论:
我刚刚在 stackoverflow 上发现了这个:
我如何在视觉中为我的语言实现智能感知studio?
这里有人实现了 ADT 支持(Visual Studio 中的 android 开发)。也许你可以从中得到一些想法:
VS ADT
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