かなり大規模なソリューションをナビゲートするのに役立つ独自の 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()
ます。
乾杯サイモン