ToolWindows.SolutionExplorer 속성
솔루션 탐색기를 나타내는 UIHierarchy 개체를 가져옵니다.
네임스페이스: EnvDTE80
어셈블리: EnvDTE80(EnvDTE80.dll)
구문
‘선언
ReadOnly Property SolutionExplorer As UIHierarchy
UIHierarchy SolutionExplorer { get; }
property UIHierarchy^ SolutionExplorer {
UIHierarchy^ get ();
}
abstract SolutionExplorer : UIHierarchy
function get SolutionExplorer () : UIHierarchy
속성 값
형식: EnvDTE.UIHierarchy
UIHierarchy 개체
예제
이 예제에서는 솔루션 탐색기를 활성화하여 항목을 선택하고 여기에 포함된 항목의 수를 계산하여 표시한 다음 이를 닫습니다.이 예제를 실행하기 전에 Visual Studio IDE(통합 개발 환경)에서 프로젝트를 엽니다.
이 예제를 추가 기능으로 실행하는 방법에 대한 자세한 내용은 방법: 자동화 개체 모델 코드의 예제 컴파일 및 실행을 참조하십시오.
Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
SolExplorerManip(_applicationObject)
End Sub
Public Sub SolExplorerManip(ByVal dte As DTE2)
' Open a project in Visual Studio, before running this add-in.
Dim solExplorer As UIHierarchy
solExplorer = dte.ToolWindows.SolutionExplorer
MsgBox("Activating Solution Explorer...")
solExplorer.Parent.Activate()
MsgBox("Seleting some items in Solution Explorer...")
solExplorer.SelectDown(vsUISelectionType.vsUISelectionTypeExtend, _
2)
MsgBox("The count of items in Solution Explorer is: " _
& solExplorer.Parent.Collection.Count.ToString())
MsgBox("Closing Solution Explorer." & vbCr & _
"If you made changes you will be prompted to save.")
solExplorer.Parent.Close(vsSaveChanges.vsSaveChangesPrompt)
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
SolExplorerManip(_applicationObject);
}
public void SolExplorerManip(DTE2 dte)
{
// Open a project in Visual Studio, before running this add-in.
UIHierarchy solExplorer;
solExplorer = _applicationObject.ToolWindows.SolutionExplorer;
MessageBox.Show("Activating Solution Explorer...");
solExplorer.Parent.Activate();
MessageBox.Show("Seleting the first two items in
Solution Explorer...");
solExplorer.SelectDown(vsUISelectionType.vsUISelectionTypeExtend,
2);
MessageBox.Show("The count of items in Solution Explorer is: "
+ solExplorer.Parent.Collection.Count.ToString());
MessageBox.Show("Closing Solution Explorer." + "\n" +
"If you made changes you will be prompted to save.");
solExplorer.Parent.Close(vsSaveChanges.vsSaveChangesPrompt);
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.