如何在 Inno Setup 中使用多行文本框接受用户输入?

发布于 2024-11-30 13:08:09 字数 118 浏览 1 评论 0原文

我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪也成诗 2024-12-07 13:08:09

您可以创建 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文