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.
我的想法是制作一种登录表单。此 gui 必须是系统中唯一活动的。所以问题是,如何使用 Qt 框架(c++)做到这一点?
您可以在 Qt 窗口上调用 showFullScreen() 和 raise(),这将导致您的应用程序接管整个屏幕......但用户仍然可以 Alt-Tab 到另一个应用程序。我认为在 Qt 中您无能为力。您可能不得不下拉并使用某种操作系统级别的 API 来防止这种情况。