我使用包模板而不是加載項創建Visual Studio 2010擴展。什麼是Visual Studio 2010中的「組織使用」菜單ID?
我想添加一個菜單項到右鍵單擊.cs文件時出現的「組織使用」菜單組。爲此,我需要該菜單組的標識和id。
<Button guid="myCmdSet" id="myButton" priority="0x0100" type="Button">
<Parent guid="guidSHLMainMenu (I think?)" id="???" />
<Icon guid="guidImages" id="bmpPic1" />
<Strings>
<CommandName>myCommand</CommandName>
<ButtonText>Do Stuff</ButtonText>
</Strings>
</Button>
我已經看過here和here和here。基本上圍繞MSDN。這些是出版的嗎,有人知道它們是什麼嗎?
編輯:我找到了通過this method的相關菜單,但我仍然沒有辦法找到菜單組GUID/ID,這正是我真正想要的。
嘗試錄製臨時宏觀和執行該命令。它應該編碼成宏。 –
這不起作用,因爲我沒有試圖獲取命令ID。 – lettucemode