如何在 Visual Studio 扩展中调用添加新项目 window

How to call Add New Item window inside an Visual Studio Extension

我正在开发 visual studio 扩展。作为它的一部分,我需要调用 "Add New Item" window of Visual Studio.

出现提示后,我还需要用户输入文件名。

如何实现?

我得到了代码。这样就可以了

 var type = typeof(VSConstants.VSStd97CmdID);

        var commandId = new CommandID(type.GUID, (int)VSConstants.VSStd97CmdID.AddClass);

        var oleMenuCommandService = GetService(typeof(IMenuCommandService)) as OleMenuCommandService;

        oleMenuCommandService.GlobalInvoke(commandId);

参考:- Link here