为什么我的 Visual Studio 扩展中的工具栏按钮被禁用?

发布于 2024-09-07 01:15:03 字数 159 浏览 9 评论 0原文

我编写了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鸵鸟症 2024-09-14 01:15:04

现在似乎可以工作:可能是以下两件事之一:

  1. 我没有将包 GUID 放在 .VSCT 文件中的 节点上。
  2. .VSCT 文件似乎并不总是在应有的时候构建。稍后重建,它似乎正在工作......

Seems to work now: could be one of two things:

  1. I didn't put the package GUID on the <Commands> node in the .VSCT file.
  2. It appears that the .VSCT file is not always built when it should be. A rebuild all later, and it appears to be working...
如梦初醒的夏天 2024-09-14 01:15:04

我遇到了这个...问题是我禁用了 vsct 文件中的按钮,注释掉 DefaultDisabled 解决了问题:

<Button guid="guidXYZCmdSet" id="XYZmd" priority="0x0007" type="Button">
<Parent guid="guidSXYZCmdSet" id="guidSXYZMenuGroup" />
<Icon guid="guidImages" id="bmpVS" />
<!--<CommandFlag>DynamicVisibility</CommandFlag>
<CommandFlag>DefaultDisabled</CommandFlag>
<CommandFlag>DefaultInvisible</CommandFlag>-->

I ran into this... problem was I had disabled the buttons in the vsct file, commenting out the DefaultDisabled solved the problem:

<Button guid="guidXYZCmdSet" id="XYZmd" priority="0x0007" type="Button">
<Parent guid="guidSXYZCmdSet" id="guidSXYZMenuGroup" />
<Icon guid="guidImages" id="bmpVS" />
<!--<CommandFlag>DynamicVisibility</CommandFlag>
<CommandFlag>DefaultDisabled</CommandFlag>
<CommandFlag>DefaultInvisible</CommandFlag>-->
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文