# Qt去掉标题栏 ## 第一种 ```c++ setWindowFlags(Qt::FramelessWindowHint | windowFlags()); ``` ## 第二种 ```c++ setWindowFlags(Qt::FramelessWindowHint); setAttribute(Qt::WA_Mapped); ```