방법: 명령 창 제어
Visual Studio의 추가 기능은 Visual Studio 2013에서 사용되지 않습니다. 추가 기능을 VSPackage 확장으로 업그레이드하는 것이 좋습니다. 업그레이드에 대한 자세한 내용은 FAQ: VSPackage 확장으로 추가 기능 변환 을 참조하십시오.
CommandWindow 개체는 Visual Studio 자동화 모델의 명령 창을 나타냅니다. CommandWindow 개체를 사용하여 다음과 같은 작업을 수행할 수 있습니다.
SendInput 메서드를 사용하여 명령 창에 명령을 삽입하고 필요에 따라 해당 명령 실행
OutputString 메서드를 사용하여 명령 창에 알림 텍스트 삽입
Clear 메서드를 사용하여 명령 창에서 모든 텍스트 지우기
명령 창의 내용뿐 아니라 너비 및 높이와 같은 특성도 제어할 수 있습니다. 자세한 내용은 방법: 창 특성 변경을 참조하십시오.
참고
표시되는 대화 상자와 메뉴 명령은 활성 설정이나 버전에 따라 도움말에서 설명하는 것과 다를 수 있습니다.이러한 절차는 일반 개발 설정을 사용하여 개발되었습니다.설정을 변경하려면 도구 메뉴에서 설정 가져오기 및 내보내기를 선택합니다.자세한 내용은 Visual Studio에서 개발 설정 사용자 지정을 참조하십시오.
예제
이 예제에서는 명령 창 자동화 모델의 다양한 멤버를 참조하고 사용하는 방법을 보여 줍니다. 예제를 실행하는 방법에 대한 자세한 내용은 방법: 자동화 개체 모델 코드의 예제 컴파일 및 실행을 참조하십시오.
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)
' Pass the applicationObject member variable to the code example.
CommandWinExample(_applicationObject)
End Sub
Sub CommandWinExample(ByVal dte As DTE2)
Try
' Get a reference to the Command window.
Dim CW As CommandWindow = dte.ToolWindows.CommandWindow
' Insert informative text into the Command window.
CW.OutputString("This takes you to the Microsoft Web site.")
' Add a command to the Command window and execute it.
CW.SendInput("nav https://www.microsoft.com", True)
' Clear the contents of the Command window.
MsgBox("Clearing the Command window...")
CW.Clear()
Catch ex As Exception
MsgBox(ex.ToString)
End Try
End Sub
public void OnConnection(object application, ext_ConnectMode
connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
// Pass the applicationObject member variable to the code example.
CommandWinExample(_applicationObject);
}
public void CommandWinExample(DTE2 dte)
{
try
{
// Get a reference to the Command window.
CommandWindow CW = dte.ToolWindows.CommandWindow;
// Insert informative text into the Command window.
CW.OutputString("This takes you to the Microsoft Web site.");
// Add a command to the Command window and execute it.
CW.SendInput("nav https://www.microsoft.com", true);
// Clear the contents of the Command window.
System.Windows.Forms.MessageBox.Show(
"Clearing the Command window...");
CW.Clear();
}
catch (Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}