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


i developing visual studio extension. part of need call "add new item" window of visual studio.

after prompting need user input file name.

how achieve ?

enter image description here

i got code. job

 var type = typeof(vsconstants.vsstd97cmdid);          var commandid = new commandid(type.guid, (int)vsconstants.vsstd97cmdid.addclass);          var olemenucommandservice = getservice(typeof(imenucommandservice)) olemenucommandservice;          olemenucommandservice.globalinvoke(commandid); 

reference :- link here


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -