我正在编写一些设计时代码。 我想使用此片段:(在此处找到)
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实例)。
这个问题有你正在寻找的答案。
获取 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;
}
正如另一个答案所示,这在调试时不起作用。
你需要一个 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)
我们已经使用以下代码成功地完成了此操作:
System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE.10.0")
不过,它并不完美 - 它要求恰好运行1个Visual Studio实例(如果有多个,该方法将返回其中一个,但您无法控制哪一个)。
我已经发布了关于这个类似问题的答案:在Visual C# 2010中获取DTE2对象的引用。
我的方法是比较DTE2。Solution.FullName 与执行程序集路径,这样就可以找到正确的 Visual Studio 实例,使用与 Quickhorns 答案中相同的 ROT 枚举来筛选可能的候选项。
对于任何有兴趣使用 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