使用 MUI 添加页面以在 NSIS 中请求字符串的最简单方法是什么?
我是 NSIS 新手。
我正在使用 NSIS 编辑器和内置向导来创建基本安装程序。我已经弄清楚如何添加第二页来询问用户备用文件夹(安装路径与数据存储路径)。我还需要向他们询问 URL(SOAP/WSDL 位置),并且我想添加另一个类似于目录页面的页面,该页面仅要求通用字符串(不浏览等)。
我正在使用 MUI(不是 MUI2)。
有一些简单的方法可以做到这一点吗?
I'm an NSIS novice.
I'm using the NSIS editor, and the built-in wizard to create a basic installer. I've figured out how to add a second page to ask the user for an alternate folder (install path vs data storage path). I also need to ask them for a URL (a SOAP/WSDL location), and I'd like to just add in another page similar to the directory page that just asks for a generic string (no browse, etc).
I'm using MUI (not MUI2).
Is there some simple way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要创建自定义页面,请使用 nsDialogs (或较旧的 InstallOptions )它们都包含在官方安装程序中,请查看一些示例。
To create a custom page, use nsDialogs (or the older InstallOptions) They are both included in the official installer, go look at some of the examples.