this->setWindowFlags(Qt::FramelessWindowHint); //去除标题框
this->setWindowFlags(Qt::WindowStaysOnTopHint); //窗口置顶
this->setAttribute(Qt::WA_ShowModal, true); //窗口模态
this->setAttribute(Qt::WA_TranslucentBackground); //窗体透明
setAttribute(Qt::WA_DeleteOnClose); //窗体关闭时销毁