如何讓我的部件全屏?我試過這樣的事情:全屏部件
void MainWindow::SetFullScreen()
{
// Make our window without panels
this->setWindowFlags(Qt::FramelessWindowHint | Qt::Tool | Qt::WindowStaysOnTopHint);
// Resize refer to desktop
this->resize(QApplication::desktop()->size());
this->setFocusPolicy(Qt::StrongFocus);
this->setAttribute(Qt::WA_QuitOnClose, true);
qApp->processEvents();
show();
this->setFocus();
}
但是小部件不在系統面板上。任何其他想法?
操作系統:Linux
謝謝。非常有用! – Ockonal 2009-08-07 20:45:33
除非「MyWidget」是另一個窗口,否則MyWidget-> showFullScreen()將不會執行任何操作。 – 2009-08-07 23:18:56
XRandr,Eyefinity或Xinerama的多屏設置如何?這是否正常工作? – drahnr 2010-03-21 20:34:16