为什么我的 Visual Studio 扩展中的工具栏按钮被禁用?
我编写了一个 Visual Studio 2010 扩展。它是一个 VS 包(位于 .VSIX 中)文件。它有一个工具栏,上面有一个按钮。
该按钮永远不会启用。我查看了 MenuAndCommands VS SDK 示例,据我所知,我没有做任何不同的事情。
我做错了什么?
I've written a Visual Studio 2010 extension. It's a VS Package (in a .VSIX) file. It's got a toolbar, which has a single button on it.
The button is never enabled. I've looked at the MenuAndCommands VS SDK example and, as far as I can tell, I'm not doing anything different.
What have I done wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在似乎可以工作:可能是以下两件事之一:
节点上。Seems to work now: could be one of two things:
<Commands>
node in the .VSCT file.我遇到了这个...问题是我禁用了 vsct 文件中的按钮,注释掉 DefaultDisabled 解决了问题:
I ran into this... problem was I had disabled the buttons in the vsct file, commenting out the DefaultDisabled solved the problem: