码迷,mamicode.com
首页 > 其他好文 > 详细

QT无标题窗口在任务栏显示关闭(增加系统菜单)

时间:2016-06-10 22:55:55      阅读:461      评论:0      收藏:0      [点我收藏+]

标签:

在对话框中使用了如下代码:

setWindowFlags(Qt::FramelessWindowHint);

在任务栏上右键点击程序,不会弹出菜单,解决办法,使用下面代码:

setWindowFlags(Qt::FramelessWindowHint | Qt::WindowSystemMenuHint | Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint);

http://blog.csdn.net/itjobtxq/article/details/8803093

QT无标题窗口在任务栏显示关闭(增加系统菜单)

标签:

原文地址:http://www.cnblogs.com/findumars/p/5574382.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!