qt界面怎么去掉窗口关闭的按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qt界面怎么去掉窗口关闭的按钮相关的知识,希望对你有一定的参考价值。
//构建最小化、最大化、关闭按钮QToolButton *minButton = new QToolButton(this);
QToolButton *closeButton= new QToolButton(this);
//获取最小化、关闭按钮图标
QPixmap minPix = style()->standardPixmap(QStyle::SP_TitleBarMinButton);
QPixmap closePix = style()->standardPixmap(QStyle::SP_TitleBarCloseButton);
//设置最小化、关闭按钮图标
minButton->setIcon(minPix);
closeButton->setIcon(closePix);
//设置最小化、关闭按钮在界面的位置
minButton->setGeometry(width-46,5,20,20);
closeButton->setGeometry(width-25,5,20,20);
//设置鼠标移至按钮上的提示信息
minButton->setToolTip(tr("最小化"));
closeButton->setToolTip(tr("关闭"));
//设置最小化、关闭按钮的样式
minButton->setStyleSheet("background-color:transparent;");
closeButton->setStyleSheet("background-color:transparent;") 参考技术A 这个没办法,不过你可以设置窗体的flags,将窗体设置成无边框窗体,不过需要你自己编写相关的窗体移动、缩小、关闭的代码,这个不难。你可以可以使用自定义窗体,其实和无边框窗体差不多。具体qt自带的例子windowflags中有较详细的代码,你可以参考。本回答被提问者和网友采纳
qt 怎么禁用关闭按钮
你点右下角的QT图标,会跳出一个小图标,点开,选择设置,里面有个关机电源一样的按钮,点一下之后,QT就彻底关闭了~ 参考技术A setWindowFlags(windowFlags() &~ Qt::WindowCloseButtonHint); //Qt::WindowCloseButtonHint其实是一个值 0x00080000 参考技术B setEnable(false);以上是关于qt界面怎么去掉窗口关闭的按钮的主要内容,如果未能解决你的问题,请参考以下文章