在 Visual Studio 扩展中访问当前代码窗格 [英] Access current code pane in Visual Studio Extension

查看:31
本文介绍了在 Visual Studio 扩展中访问当前代码窗格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在编写一个带有右键菜单的 Visual Studio (2010) 扩展,同时在代码视图中.我希望能够从我的菜单项事件处理程序中检查当前代码,但无法在对象模型中找到执行此操作的某处.

Im writing a visual studio (2010) extension with a right click menu whilst in a code view. I want to be able to examine the current code from my menu item event handler but havent been able to find somewhere in the object model to do this.

如何在 Visual Studio 扩展中访问当前窗口中的代码?

How do i access the code in the current window in a visual studio extension?

这是我用来获取当前文档文本的代码

Heres the code i used to get the current document text

 DTE dte = Package.GetGlobalService(typeof(DTE)) as DTE ;
 TextDocument activeDoc = dte.ActiveDocument.Object() as TextDocument;

 var text = activeDoc.CreateEditPoint(activeDoc.StartPoint).GetText(activeDoc.EndPoint);

推荐答案

您可能正在寻找

Document doc = DTE.ActiveDocument;
TextDocument txt = doc.Object() as TextDocument;

然后您应该能够根据需要使用 TextDocument 编辑作品.

You should then be able to edit work with the TextDocument as needed.

这篇关于在 Visual Studio 扩展中访问当前代码窗格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆