Qt 之容器内的控件全屏

m_label = new QLabel();
    ui->stackedWidget->addWidget(m_label);
    ui->stackedWidget->setCurrentWidget(m_label);

ui->stackedWidget->removeWidget(m_label);
    m_label->setWindowFlags(Qt::Window);
    m_label->setScaledContents(true);
    m_label->showFullScreen();
m_label->setWindowFlags(Qt::Window);
这个语句很重要。
posted @ 2014-04-24 21:02  wiessharling  阅读(1460)  评论(0编辑  收藏  举报