Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使我的应用程序始终位于最前面,这意味着用户无法以 Qt 或任何其他可能的 C++ 方式访问开始菜单或桌面? 我还需要它在登录进度后立即启动,更像是一个新的 windows gui,一个更简单的
QWidget::setWindowFlags(Qt::WindowStaysOnTopHint)应该做的伎俩。请注意,在 X11 上的某些窗口管理器上,您还必须传递 Qt::X11BypassWindowManagerHint 才能使此标志正常工作。
QWidget::setWindowFlags(Qt::WindowStaysOnTopHint)