2

Visual Studio 2012 中的新“预览选项卡”功能是否有 Visual Studio 2010 插件?

4

1 回答 1

2

我试过自己做,但我没有做 VS 扩展的经验,也没有使用 EnvDTE API。

我已经按照为 Visual Studio 2010 构建和发布扩展来创建新的 Visual Studio 2010 扩展。

然后,我使用 VSPackage Builder 设计器添加了一个工具菜单项,并使用此代码尝试模仿该行为。

我无法:

  • 确定何时选择文件,所以我必须循环。
  • 在现有窗口中打开文件。
  • 更改要在右侧显示的窗口。

我将代码留在这里,以防其他人对创建扩展感兴趣。希望他对 VS 可扩展性有更好的了解。

[Guid(GuidList.guidPreviewDocumentTabPkgString)]
public class PreviewDocumentTabPackage : PreviewDocumentTabPackageBase
{
    private DTE dte;
    private Document currentTab;

    protected override void Initialize()
    {
        base.Initialize();

        this.dte = this.GetService(typeof(_DTE)) as DTE;
        if (this.dte == null)
        {
            throw new ArgumentNullException("dte");
        }

        var applicationObject = (DTE2)GetGlobalService(typeof(SDTE));
        var solutionExplorer = applicationObject.ToolWindows.SolutionExplorer;

        System.Threading.Tasks.Task.Factory.StartNew(() =>
        {
            object currentItem = null;
            while (true) // To be improved
            {
                // Get selected items
                var items = solutionExplorer.SelectedItems as Array;

                // Only do logic if there is one file selected, no preview for multiple files.
                if (items != null &&
                    items.Length == 1)
                {
                    var item = items.GetValue(0);
                    if (currentItem == null)
                    {
                        currentItem = item;
                    }
                    else
                    {
                        // Only show preview if the file is "new".
                        if (item != currentItem)
                        {
                            currentItem = item;

                            // Determine if is a c# file.
                            var realItem = (UIHierarchyItem)currentItem;
                            var itemName = realItem.Name;
                            if (itemName.EndsWith(".cs"))
                            {
                                // Get the file
                                var projectItem = (ProjectItem)realItem.Object;
                                var projectItemPath = projectItem.Properties.Item("FullPath")
                                                                    .Value.ToString();

                                // No already opened file.
                                if (currentTab == null)
                                {
                                    // Open the file and get the window.
                                    this.currentTab = this.dte.Documents.Open(projectItemPath);
                                }
                                else
                                {
                                    // Todo: Open the file in the this.currentTab window.
                                }
                            }
                        }
                    }
                }

                // Avoid flooding
                System.Threading.Thread.Sleep(100);
            }
        });
    }
}
于 2013-04-10T12:58:04.683 回答