最小化
点击任务栏图标,可以使窗口最小化,只需添加如下代码:
setWindowFlags(Qt::FramelessWindowHint | Qt::WindowSystemMenuHint | Qt::WindowMinMaxButtonsHint);//任务栏使程序最小化
透明化
实现无边框,窗口背景透明化:
setWindowFlags(Qt::FramelessWindowHint);//无边框
setAttribute(Qt::WA_TranslucentBackground);//背景透明
此博客均属原创或译文,欢迎转载但请注明出处 GithubPage:https://zhangquan1995.github.io