2010-05-19 98 views
7

嗨,我正在做一個擴展視覺工作室和具體的事情,我需要的是獲取編輯器窗口的選定文本進一步處理。有人知道什麼接口或服務有這個? 以前我需要找到開放式解決方案的路徑,爲此我需要一個實現IVsSolution的服務,所以對於這個其他問題,我必須有一些服務爲我提供這些信息。獲取編輯器窗口的選定文本..視覺工作室擴展

回答

3

的OnlayoutChanged內的下面的代碼將彈出一個消息的代碼選擇:

if (_view.Selection.IsEmpty) 
     { 
      return; 
     } 
     else 
     { 
      string selectedText = _view.Selection.StreamSelectionSpan.GetText(); 

      MessageBox.Show(selectedText); 
     } 

其他地方剛剛拿到viewhost和類型的其_view(IWpfTextView)

10

爲了澄清「只需在Stacker的答案中獲取viewhost「,下面是如何從Visual Studio 2010 VSPackage的其他任何位置獲取當前編輯器視圖以及從那裏獲取ITextSelection的完整代碼。特別是,我使用它從菜單命令回調中獲取當前選擇。

IWpfTextViewHost GetCurrentViewHost() 
{ 
    // code to get access to the editor's currently selected text cribbed from 
    // http://msdn.microsoft.com/en-us/library/dd884850.aspx 
    IVsTextManager txtMgr = (IVsTextManager)GetService(typeof(SVsTextManager)); 
    IVsTextView vTextView = null; 
    int mustHaveFocus = 1; 
    txtMgr.GetActiveView(mustHaveFocus, null, out vTextView); 
    IVsUserData userData = vTextView as IVsUserData; 
    if (userData == null) 
    { 
     return null; 
    } 
    else 
    { 
     IWpfTextViewHost viewHost; 
     object holder; 
     Guid guidViewHost = DefGuidList.guidIWpfTextViewHost; 
     userData.GetData(ref guidViewHost, out holder); 
     viewHost = (IWpfTextViewHost)holder; 
     return viewHost; 
    } 
} 


/// Given an IWpfTextViewHost representing the currently selected editor pane, 
/// return the ITextDocument for that view. That's useful for learning things 
/// like the filename of the document, its creation date, and so on. 
ITextDocument GetTextDocumentForView(IWpfTextViewHost viewHost) 
{ 
    ITextDocument document; 
    viewHost.TextView.TextDataModel.DocumentBuffer.Properties.TryGetProperty(typeof(ITextDocument), out document); 
    return document; 
} 

/// Get the current editor selection 
ITextSelection GetSelection(IWpfTextViewHost viewHost) 
{ 
    return viewHost.TextView.Selection; 
} 

這裏是MSDN的文檔爲IWpfTextViewHostITextDocument,和ITextSelection

相關問題