Qt去掉标题栏

第一种

setWindowFlags(Qt::FramelessWindowHint | windowFlags());

第二种

setWindowFlags(Qt::FramelessWindowHint);
setAttribute(Qt::WA_Mapped);