0

使用 Microsoft.VisualStudio.CommandBars;

在以下示例中。

var applicationObject = (DTE2)application;
var allCommands = ((CommandBars)applicationObject.CommandBars);

简单的问题:为什么我失踪了allComands.Item[]

4

1 回答 1

0

尝试直接使用索引器:

allCommands["..."]
于 2011-05-13T11:12:57.630 回答