QMainWindow 启动前出现小窗口

发布于 2024-12-08 02:52:49 字数 322 浏览 1 评论 0原文

我使用 QMainWindow 作为主窗口,并在 QApplication 之前调用 main.cpp 中的 QMainWindow::show(): :exec()

然而,当它启动时,我实际上可以首先看到一个小窗口,然后是一个更大的窗口,所有内容都已加载。

这是有线的还是我可以在一切都安定下来之前阻止窗口显示?

PS:这个应用程序有一个托盘图标。如果我不在 main.cpp 中调用 show(),我仍然会看到小窗口。

I'm using a QMainWindow as a primary window, and call QMainWindow::show() in main.cpp before QApplication::exec().

However, when it starts, I can actually see a small window first, then the window in a bigger size with everything loaded.

Is that wired or can I keep the window from showing up until everything is settled in?

P.S: this app has a tray icon. If I don't calling show() in main.cpp, I still see the small window.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无敌元气妹 2024-12-15 02:52:49

最有可能的情况是应用程序中的某些代码调用了 show(),可能是在构建其小部件期间。

您的 Qt 版本是否允许您调试并单步执行 Qt 源代码?如果是这样,也许尝试在 QWidget::show() 中放置一个断点,并查看调用堆栈。

The most likely thing is that some code in your application calls show(), probably during construction of its widgets.

Does your build of Qt allow you to debug, and step into, the Qt source code? If so, maybe try putting a break-point in QWidget::show(), and looking at the call-stack.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文