QT学习之旅1

    // 下面这句可以隐藏窗口的标题和边框,在看全屏效果时很有用
    setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowTitleHint);
    Qt::WindowFlags flags = windowFlags();
    setWindowFlags(flags | Qt::WindowStaysOnTopHint); //窗口置顶

你可能感兴趣的:(QT学习之旅1)