9

かなり大規模なソリューションをナビゲートするのに役立つ独自の Visual Studio 2010 拡張機能を作成しています。
いくつかの検索条件に応じてクラス名と関数名を表示するダイアログ ベースの VS 拡張機能が既にあります。このクラス/メソッドをクリックすると、正しいファイルを開いて関数にジャンプできます。
私が今やりたいことは、その関数の先頭にカーソルを設定することです。
関数にジャンプする私のコードは次のとおりです。

Solution currentSolution = ((EnvDTE.DTE)System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE.10.0")).Solution;
ProjectItem requestedItem = GetRequestedProjectItemToOpen(currentSolution.Projects, "fileToBeOpened");
if (requestedItem != null)
{
    // open the document
    Window window = requestedItem.Open(Constants.vsViewKindCode);
    window.Activate();

    // search for the function to be opened
    foreach (CodeElement codeElement in requestedItem.FileCodeModel.CodeElements)
    {
        // get the namespace elements
        if (codeElement.Kind == vsCMElement.vsCMElementNamespace)
        {
            foreach (CodeElement namespaceElement in codeElement.Children)
            {
                // get the class elements
                if (namespaceElement.Kind == vsCMElement.vsCMElementClass)
                {
                   foreach (CodeElement classElement in namespaceElement.Children)
                   {
                       try
                       {
                           // get the function elements
                           if (classElement.Kind == vsCMElement.vsCMElementFunction)
                           {
                               if (classElement.Name.Equals("functionToBeOpened", StringComparison.Ordinal))
                               {
                                   classElement.StartPoint.TryToShow(vsPaneShowHow.vsPaneShowTop, null);
                                   this.Close();
                               }
                           }
                       }
                       catch
                       {
                       }
                   }
               }
           }
       }
   }
}

ここで重要なポイントはwindow.Activate();、正しいファイルを開き、classElement.StartPoint.TryToShow(vsPaneShowHow.vsPaneShowTop, null);正しい関数にジャンプすることです。
残念ながら、カーソルは要求された関数の先頭に設定されていません。これどうやってするの?みたいなことを考えていclassElement.StartPoint.SetCursor()ます。
乾杯サイモン

4

1 に答える 1

15

私はついにそれを手に入れました...メソッドがあるインターフェイス
を使用するだけです。 したがって、上記のコードは次のようになります。 TextSelectionMoveToPoint

// open the file in a VS code window and activate the pane
Window window = requestedItem.Open(Constants.vsViewKindCode);
window.Activate();

// get the function element and show it
CodeElement function = CodeElementSearcher.GetFunction(requestedItem, myFunctionName);

// get the text of the document
TextSelection textSelection = window.Document.Selection as TextSelection;

// now set the cursor to the beginning of the function
textSelection.MoveToPoint(function.StartPoint);
于 2012-06-22T12:39:33.783 に答える