如何在 Visual Studio 中扩展项目属性屏幕?
当您在 Visual Studio 中查看项目属性时,您会看到许多选项卡。
标准选项卡是“应用程序”、“构建”、“构建事件”等。
还可以添加自定义选项卡。例如,查看 Web 应用程序或 VSIX 项目的属性,您会获得不同的(额外)选项卡。
那么如何编写一个 VSIX 插件来向项目属性窗口添加自定义选项卡呢?
When u view a project properties in Visual Studio u get a number of tabs.
The standard ones are "Application", "Build", "Build Events" etc.
It is also possible to add custom tabs. For example view the properties of a WebApplication or a VSIX project you get different (extra) tabs.
So how do I write a VSIX addin that adds a custom tab to the project properties windows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看这篇文章:如何:添加和删除属性页。
您像这样创建一个页面:
然后像这样注册它:
Check out this article: How to: Add and Remove Property Pages.
You create a page like so:
And you register it like so: