QDialog结果值存储在哪里?
如果我的 QDialog
结果值为 QDialog::Accepted
,那么该值存储在哪里?而且,知道这样的价值有什么好处呢?
谢谢。
If I have the QDialog
result value as QDialog::Accepted
, where is such value stored? And, what is the benefit of knowing such value?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过调用 QDialog 的
result()
方法来获取它。它可以让您知道用户是否单击了对话框上的“确定”或“取消”(或任何类似选项)。
You can get it by calling QDialog's
result()
method.And it allows you to know if the user clicked "OK" or "Cancel" (or any similar option) on the dialog.