0

IDE の標準メニューにあるコマンドを、VS2005 の右クリック コンテキスト メニューにも表示するにはどうすればよいですか?

4

1 に答える 1

0

あなたに何か助けがあれば、私はこのようなものを使用します:

public void OnConnection(object application, ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
    _application = (DTE2)application;
    if (connectMode == ext_ConnectMode.ext_cm_Startup)
    {
    // Other command bars are: "Code Window", "ASPX Code Context"
        var commandBar = _application.CommandBars["ASPX Context"];

        CommandBarButton test =
                commandBar.Controls.Add(MsoControlType.msoControlButton,
                System.Reflection.Missing.Value,
                System.Reflection.Missing.Value,
                System.Reflection.Missing.Value, true) as CommandBarButton;

            // Set the caption of the submenuitem
            test.Caption = "Edit";
            test.Enabled = true;
            test.Visible = true;
            test.Click += new _CommandBarButtonEvents_ClickEventHandler(MyEventHandler);
    }
}
于 2012-08-17T11:29:25.317 に答える