// 设置窗口标志
this->setWindowFlag(Qt::FramelessWindowHint); //此设置将窗口设置成无边框模式
//设置窗口背景透明
this->setAttribute(Qt::WA_TranslucentBackground,true);
attribute:属性
Translucent:半透明
Qt::WA_TranslucentBackground:里面的WA:就是widget Attribute的缩写;小部件属性;用来描述这个部件的属性的;比如说背景半透明(Qt::WA_TranslucentBackground);关闭组件时,释放对象(Qt::WA_DeleteOnClose)
这些属性都可以使用 或(|)来叠加在一起;