在 Qt 中从用户那里获取几个值?
我正在开发一个使用 QInputDialog 命令从用户获取值的应用程序。然后该值将用于应用程序中的多次计算。
现在我希望能够在执行计算之前从用户那里读取多个值。
知道我应该使用 Qt 中的哪个对象吗?
先感谢您, 马达利纳
I am working on an application which uses the QInputDialog
command to get a value from the user. The value is then used in several computation in the application.
Now I want to the able to read several values from the user before the computations are performed.
Any idea of what object from Qt should I use?
Thank you in advance,
madalina
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只需创建一个自定义 QDialog(或者只是应用程序中的另一个屏幕)来收集所需的信息(如果有多个值)。
I would just create a custom QDialog (or heck just another screen in the application) to gather the required information, if it is several values.