我正在使用以下代码在全屏和最大化窗口之间切换,
void MainWindow::keyPressEvent(QKeyEvent *e)
{
if ((e->key()==Qt::Key_Enter) && (e->modifiers()==Qt::AltModifier))
this->setWindowState(Qt::WindowFullScreen);
if (e->key()==Qt::Key_Escape)
if(isFullScreen())
this->setWindowState(Qt::WindowMaximized);
}
但这不起作用。任何朋友可以告诉我这里有什么问题吗?