C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – QDialog :: exec()阻止应用程序大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前有一个formA,它使用从QDialog继承的另一个表单请求用户输入.使用QDialog :: exec提示表单.现在问题是formA会有多个实例,因此每当formA打开另一个表单时,整个应用程序都会阻塞另一个表单.目前我有这样的东西

if(formUserInputrequired->exec()==1) //Block until the user SELEcts from a form
{
}

有没有办法让QDialog :: exec不阻止整个应用程序我只是希望它只阻止它被调用的形式的实例或类似的东西,但绝对不是整个应用程序?

更新:
我不需要阻挡窗口.但是,我想知道用户何时完成另一种形式的输入,以便原始表单可以处理该数据

解决方法

在Qt :: WindowModal作为参数的对话框上调用setWindowModality方法.

Qt::NonModal          0  The window is not modal and does not block input to other windows.
Qt::WindowModal       1  The window is modal to a single window hierarchy and blocks input to its parent window,all grandparent windows,and all siblings of its parent and grandparent windows.
Qt::ApplicationModal  2  The window is modal to the application and blocks input to all windows.

Source

大佬总结

以上是大佬教程为你收集整理的c – QDialog :: exec()阻止应用程序全部内容,希望文章能够帮你解决c – QDialog :: exec()阻止应用程序所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。