QMainWindow 启动前出现小窗口
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最有可能的情况是应用程序中的某些代码调用了 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.