如何在 Inno Setup 中使用多行文本框接受用户输入?
我有一个使用 Inno Setup 构建的安装程序,目前我正在使用“TInputQueryWizardPage”控件接受输入。但是,这仅允许文本框中包含单行文本。有没有办法在 Inno Setup 中接受多行文本框的输入?
I have an installer built with Inno Setup and I'm currently accepting input using the "TInputQueryWizardPage" control. However, this only allows for a single line of text in the textbox. Is there a way to accept input with a multi-line textbox in Inno Setup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建 TMemo/TNewMemo 对象并将其放在任何控件上 (
obj.Parent :=parentpage
)。您将需要直接处理获取和设置它的值,而不是通过父控件。You can create a TMemo/TNewMemo object and put it on any control (
obj.Parent := parentpage
). You will need to handle getting and settign it's value directly rather then going through the parent control though.