是否可以在 Visual Studio 模板中提示用户输入信息?
当用户从 Visual Studio 2005 模板创建新项目时,是否可以提示用户输入多个文件名?当使用模板时,最好不仅仅填写类的名称。
Is it possible to prompt the user for more than just a file name when they create a new item from a Visual Studio 2005 template? It would be nice to have more than just the class's name filled in when a template is used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然,实现此目的的唯一方法是创建 WizardExtension(使用实现 IWizard 的类编译 DLL),并在 VSTEMPLATE 文件中引用它。
Apparently, the only way to accomplish this is by creating a WizardExtension (compile a DLL with a class that implements IWizard), and referencing it in the VSTEMPLATE file.