6

VS 2012 の場合、次のMSDN コードを使用してデバッガーの出力ウィンドウをクリアできません。

基本的に、DTE2 オブジェクトを に渡すことができませんClearExample

public void ClearExample(DTE2 dte)
{
    // Retrieve the Output window.
    OutputWindow outputWin = dte.ToolWindows.OutputWindow;

    // Find the "Test Pane" Output window pane; if it doesn't exist, 
    // create it.
    OutputWindowPane pane = null;
    try
    {
        pane = outputWin.OutputWindowPanes.Item("Test Pane");
    }
    catch
    {
        pane = outputWin.OutputWindowPanes.Add("Test Pane");
    }

    // Show the Output window and activate the new pane.
    outputWin.Parent.AutoHides = false;
    outputWin.Parent.Activate();
    pane.Activate();

    // Add a line of text to the new pane.
    pane.OutputString("Some text." + "\r\n");

    if (MessageBox.Show("Clear the Output window pane?", "", 
        MessageBoxButtons.YesNo) == DialogResult.Yes)
        pane.Clear();
}

他の SO リンクを使用しても、VS2012 では機能しませんでした。

Visual Studio で出力ウィンドウをプログラムでクリアすることは可能ですか?

Visual Studio (デバッグ) 出力ウィンドウをプログラムでクリアできますか?

4

1 に答える 1