如何在安装程序中包含和使用文本字段
我想将许可证检查包含到我的 NSIS 安装程序中。简单的文本字段和按钮对我来说就足够了,但我没有找到任何示例如何将文本字段(文本框)包含到页面中以及如何读取其值。
请你帮我一下好吗?
I would like to include license-check into my NSIS installer. Simple Text field and button would be enough for me, but I didn't find any example how to include Text field (text box) into page and how to read its value.
Will you help me with it, please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了这个问题并找到了不同的解决方案:
后来的页面及其函数可以访问 $txt,其中包含文本框中的文本。
I had this problem and found a different solution:
Later pages and their function then have access to $txt, which has the text from the textbox.
您可以使用它来创建一个文本字段:
并获取输入(不确定这个):(
如 example\nsDialogs\example.nsi 所示)
You can use this to create a text field :
And get the input (Not sure for this one) :
(As show in example\nsDialogs\example.nsi)