How to make a dialog window always on the front at my application level

你离开我真会死。 提交于 2019-12-12 08:45:00

问题


How can I make a Qt dialog window always on top at my application level?

I want to make a dialog window always on the front but remember always on the front at my application level, even if I click on an empty place, I want to it stay on the front of my application only.

I have tried to use setWindowFlags(Qt::WindowStaysOnTopHint), but this makes the dialog window always on the top at the desktop level, but I want it to be on top at the my application level only.

How can I do that?


回答1:


You can achieve this by giving the dialogs a parent. A child dialog always stays on top of its parent window.




回答2:


If you can't send parent to your dialog_window (based on code conditional) Like me, use flags.

Dialog_dlg::Dialog_dlg(QWidget *parent)
    : QDialog(parent), ui(new Ui::Dialog_dlg)
{
    ui->setupUi(this);
    setFixedSize(width(), height()); //for no maximaize
    setWindowFlag(Qt::WindowStaysOnTopHint);
}

I used this and good to me. See other flags, test them, and choose.



来源:https://stackoverflow.com/questions/26315735/how-to-make-a-dialog-window-always-on-the-front-at-my-application-level

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!