6

我正在为 Visual Studio 2010 (vsix) 编写自定义包。

我需要做的是在解决方案资源管理器的项目节点中添加一个上下文菜单按钮。

我已经设法在右键单击项目节点时显示上下文菜单,但我的下一个挑战是获取对已单击的项目对象的引用。目前,我可以使用下面的代码通过 IDE 中的活动文档来获取项目。

DTE dte = (DTE)ServiceProvider.GlobalProvider.GetService(typeof(DTE));
Project project = dte.ActiveDocument.ProjectItem.ContainingProject;

所以我的问题是:如何获得对解决方案资源管理器中选择的项目的类似引用?

4

1 回答 1

12

我想到了。还不如分享信息。

通过使用该SVsShellMonitorSelection服务,我可以获得对所选层次结构的引用IVsHierarchy,这反过来又允许我获得对所选对象的引用。然后可以根据在解决方案资源管理器中选择的内容将其转换为ProjectProjectItem等类。便利!

IntPtr hierarchyPointer, selectionContainerPointer;
Object selectedObject  = null;
IVsMultiItemSelect multiItemSelect;
uint projectItemId;

IVsMonitorSelection monitorSelection = 
        (IVsMonitorSelection)Package.GetGlobalService(
        typeof(SVsShellMonitorSelection));

monitorSelection.GetCurrentSelection(out hierarchyPointer, 
                                     out projectItemId, 
                                     out multiItemSelect, 
                                     out selectionContainerPointer);

IVsHierarchy selectedHierarchy = Marshal.GetTypedObjectForIUnknown(
                                     hierarchyPointer, 
                                     typeof(IVsHierarchy)) as IVsHierarchy;

if (selectedHierarchy != null)
{
    ErrorHandler.ThrowOnFailure(selectedHierarchy.GetProperty(
                                      projectItemId,
                                      (int)__VSHPROPID.VSHPROPID_ExtObject, 
                                      out selectedObject));
}

Project selectedProject = selectedObject as Project;

这是来源

于 2012-06-16T06:46:09.157 回答