I've built a Visual Studio 2008 add-in . I want to add a command to the context menu of the code window's tab . The thing I didn't know is how to get the tab context menu in this way:
CommandBars cmdBars = (CommandBars)(_applicationObject.CommandBars);
CommandBar projectFileListMenu = cmdBars["Item"];
Any idea?