QDialog

QDialog设置setWindowFlags(Qt::FramelessWindowHint);后,dialog弹不出来,界面不显示:

在继承一个QDialog类并设置窗口为无边框时,如果调用setWindowFlags(Qt::FramelessWindowHint);则虽然能去掉窗口的边框,但是界面内部的其他控件却冻结了一样,解决的方法是将上述语句改为:setWindowFlags(Qt::Dialog | Qt::FramelessWindowHint);

解决方案: //setWindowFlags(Qt::FramelessWindowHint | Qt::WindowMinimizeButtonHint);

       //setAttribute(Qt::WA_TranslucentBackground, true);

 

       setWindowFlags(Qt::Dialog | Qt::FramelessWindowHint);

       setAttribute(Qt::WA_TranslucentBackground);// 背景透明

你可能感兴趣的:(QDialog)