11

我正在编写一些设计时代码。我想使用这个片段:(在这里找到)

var dte = (EnvDTE.DTE) GetService(typeof(EnvDTE.DTE));
if (dte != null)
{
    var solution = dte.Solution;
    if (solution != null)
    {
        string baseDir = Path.GetDirectoryName(solution.FullName);
    }
}

问题是这不能编译。(GetService 不是已知的方法调用)我尝试添加 Microsoft.VisualStudio.Shell(和 Microsoft.VisualStudio.Shell.10.0),但没有帮助。

在互联网上环顾四周,我发现您需要一个 IServiceProvider 来调用它。

但是所有展示如何获取 IServiceProvider 的示例都使用 EnvDTE。

因此,要获得当前的 EnvDTE,我需要 IServiceProvider。但要获得 IServiceProvider,我需要一个 EnvDTE。(我的桶里有个洞……)

所以,这是我的问题:

在普通的 WPF 应用程序中,如何获取EnvDTE的当前实例?

注意:我不是在寻找任何旧的 EnvDTE 实例。我需要一个用于我当前的 Visual Studio 实例(我一次运行 3-4 个 Visual Studio 实例。)

4

5 回答 5

8

这个问题有你正在寻找的答案。

在 Visual C# 2010 中获取 DTE2 对象的引用

具体来说

https://stackoverflow.com/a/4724924/858142

这是代码:

用途:

using System;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
using EnvDTE;
using Process = System.Diagnostics.Process;

方法:

[DllImport("ole32.dll")]
private static extern void CreateBindCtx(int reserved, out IBindCtx ppbc);
[DllImport("ole32.dll")]
private static extern void GetRunningObjectTable(int reserved,
                                                 out IRunningObjectTable prot);
internal static DTE GetCurrent()
{
   //rot entry for visual studio running under current process.
   string rotEntry = String.Format("!VisualStudio.DTE.10.0:{0}",
                                    Process.GetCurrentProcess().Id);
   IRunningObjectTable rot;
   GetRunningObjectTable(0, out rot);
   IEnumMoniker enumMoniker;
   rot.EnumRunning(out enumMoniker);
   enumMoniker.Reset();
   IntPtr fetched = IntPtr.Zero;
   IMoniker[] moniker = new IMoniker[1];
   while (enumMoniker.Next(1, moniker, fetched) == 0)
   {
       IBindCtx bindCtx;
       CreateBindCtx(0, out bindCtx);
       string displayName;
       moniker[0].GetDisplayName(bindCtx, null, out displayName);
       if (displayName == rotEntry)
       {
           object comObject;
           rot.GetObject(moniker[0], out comObject);
           return (DTE)comObject;
       }
   }
   return null;
}

正如另一个答案所示,这在调试时不起作用。

于 2012-06-12T14:24:03.903 回答
4

您需要一个IServiceProvider,然后您可以调用它的 GetService 方法。
dte = (DTE)serviceProvider.GetService(typeof(DTE));

所以问题是如何获得对IServiceProvider接口的引用。

例如,如果您使用工具窗口(从ToolWindowPane继承)创建VsPackage,则 ToolWindow 类本身实现 IServiceProvider。在这种情况下,当您想在 WPF 控件中使用 IServiceProvider 时,您可以在工具窗口构造函数上创建它的实例,并简单地将其作为参数传递给控件的构造函数。this

[Guid("f716c629-b8e3-4ab2-8dbd-8edd67165609")]
public class MyToolWindow : ToolWindowPane
{
    /// <summary>
    /// Standard constructor for the tool window.
    /// </summary>
    public MyToolWindow() :
        base(null)
    {
        ...
        // This is the user control hosted by the tool window
        base.Content = new MyControl(this);
    }

您的控件的构造函数IServiceProvider作为参数获取:

public MyControl(IServiceProvider _serviceProvider)
于 2012-06-12T06:38:53.590 回答
0

我们使用以下代码成功完成了此操作:

System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE.10.0")

虽然它并不完美——它需要运行 1 个 Visual Studio 实例(如果有多个,该方法将返回其中一个,但您无法控制哪一个)。

于 2012-06-05T22:36:40.257 回答
0

我已经发布了关于这个类似问题的答案: Get the reference of the DTE2 object in Visual C# 2010

我的方法是将 DTE2.Solution.FullName 与执行的程序集路径进行比较,这样可以在使用与 Quickhorns 答案中相同的 ROT 枚举来过滤可能的候选者之后找到正确的 Visual Studio 实例。

于 2012-10-23T16:22:00.603 回答
0

对于有兴趣使用 F# 执行此操作的任何人,这里有一个几乎完整的转换(当前设置为在 linqpad 中运行):

open System;
open System.Runtime.InteropServices;
open System.Runtime.InteropServices.ComTypes;
open EnvDTE;
open System.Diagnostics;
//http://stackoverflow.com/questions/10864595/getting-the-current-envdte-or-iserviceprovider-when-not-coding-an-addin

//http://stackoverflow.com/questions/6558789/how-to-convert-out-ref-extern-parameters-to-f
//http://stackoverflow.com/questions/1689460/f-syntax-for-p-invoke-signature-using-marshalas

[<System.Runtime.InteropServices.DllImport("ole32.dll")>] 
extern int CreateBindCtx(System.IntPtr inRef, IBindCtx& outParentRef);
[<System.Runtime.InteropServices.DllImport("ole32.dll")>]
extern int GetRunningObjectTable(System.IntPtr inRef, IRunningObjectTable& outParentRef);
//let dte = System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE.12.0") :?> EnvDTE80.DTE2
let comName="VisualStudio.DTE.12.0"
let rotEntry = "!"+comName
//let mutable rot:IRunningObjectTable =null

let rot=
    let mutable result:IRunningObjectTable = null
    GetRunningObjectTable(nativeint 0, &result) |> ignore
    result


let mutable enumMoniker:IEnumMoniker = null
rot.EnumRunning (&enumMoniker) 
enumMoniker.Reset() |> ignore
let mutable fetched = IntPtr.Zero
let mutable moniker:IMoniker[] = Array.zeroCreate 1 //http://msdn.microsoft.com/en-us/library/dd233214.aspx

let matches = seq {
    while enumMoniker.Next(1, moniker, fetched) = 0 do
        "looping" |> Dump
        let mutable bindCtx:IBindCtx = null
        CreateBindCtx(nativeint 0, &bindCtx) |> ignore
        let mutable displayName:string = null
        moniker.[0].GetDisplayName(bindCtx,null, &displayName)
        displayName |> Dump
        if displayName.StartsWith(rotEntry) then
            let mutable comObject = null
            rot.GetObject(moniker.[0], &comObject) |> ignore
            let dte =  comObject:?>EnvDTE80.DTE2
            yield displayName,bindCtx,comObject,dte.FullName, dte
}
matches |> Dump
于 2014-05-02T21:13:12.397 回答