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.
我有一个可以在 Windows 上正确构建和运行的 Qt4 应用程序。但是,当我在 Linux(ubuntu 12.04)上构建和运行它时,我的主窗口(QMainWindow)的 QMenuBar 丢失了。它占用的空间似乎已分配,但它是不可见/透明的。
尝试手动设置
mainLayout->setMenuBar(菜单栏);
它对我有用。