Gewusst wie: Steuern des Befehlsfensters
Das CommandWindow-Objekt stellt das Befehlsfenster im Automatisierungsmodell von Visual Studio dar.Sie können das CommandWindow-Objekt für folgende Zwecke verwenden:
Einfügen eines Befehls in das Befehlsfenster und optionales Ausführen des Befehls mithilfe der SendInput-Methode.
Einfügen von Informationstext in das Befehlsfenster mithilfe der OutputString-Methode.
Löschen allen Textes aus dem Befehlsfenster mithilfe der Clear-Methode.
Außer den Inhalten des Befehlsfensters können auch dessen Merkmale, z. B. Breite und Höhe, gesteuert werden.Weitere Informationen finden Sie unter Gewusst wie: Ändern des Erscheinungsbilds eines Fensters.
Hinweis |
---|
Je nach den aktiven Einstellungen oder der Version unterscheiden sich die Dialogfelder und Menübefehle auf Ihrem Bildschirm möglicherweise von den in der Hilfe beschriebenen.Bei der Entwicklung dieser Verfahren war die Option Allgemeine Entwicklungseinstellungen aktiviert.Wählen Sie im Menü Extras die Option Einstellungen importieren und exportieren aus, um die Einstellungen zu ändern.Weitere Informationen finden Sie unter Visual Studio-Einstellungen. |
Beispiel
In diesem Beispiel wird gezeigt, wie die verschiedenen Member des Automatisierungsmodells des Befehlsfensters verwendet werden und wie auf sie verwiesen wird.Weitere Informationen zum Ausführen der Beispiele finden Sie unter Gewusst wie: Kompilieren und Ausführen der Codebeispiele für das Automatisierungsobjektmodell.
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);
}
}
Siehe auch
Aufgaben
Gewusst wie: Ändern des Erscheinungsbilds eines Fensters
Gewusst wie: Erstellen von Add-Ins
Exemplarische Vorgehensweise: Erstellen eines Assistenten
Konzepte
Diagramm "Automationsobjektmodell"
Weitere Ressourcen
Erstellen und Steuern von Umgebungsfenstern