您好,登錄后才能下訂單哦!
這篇文章主要介紹“Qt如何實現無邊框背景透明窗體”,在日常操作中,相信很多人在Qt如何實現無邊框背景透明窗體問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Qt如何實現無邊框背景透明窗體”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
用Qt來做無邊框北京透明窗體非常簡單,根本不需要用什么系統層的API來實現透明什么的,Qt本身提供了很多種設置窗體透明的方法,除了可以設置窗體的屬性為透明以外,還可以設置透明度函數,以及qss來設置透明度顏色等,方法很多,按照需要可以選用自己最合適的辦法,如果想要整個窗體的背景圖類似于無邊框的異行,你只需要準備一張美工做好的png帶透明的背景圖即可,直接用qss的形式設置為窗體的背景圖,你也可以用painter繪制上去,這樣就可以產生各種奇形怪狀的異行窗體,比如中間挖個洞的背景圖,可以直接穿透桌面。
Widget::Widget(QWidget *parent) : QWidget(parent), ui(new Ui::Widget) { ui->setupUi(this); this->setAttribute(Qt::WA_TranslucentBackground); this->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowSystemMenuHint | Qt::WindowMinimizeButtonHint); ui->widget->installEventFilter(this); ui->widget->setStyleSheet(QString("background-image:url(:/image/%1.png);").arg(1)); } Widget::~Widget() { delete ui; } bool Widget::eventFilter(QObject *watched, QEvent *evt) { static int index = 1; static QPoint mousePoint; static bool mousePressed = false; QMouseEvent *event = static_cast<QMouseEvent *>(evt); if (event->type() == QEvent::MouseButtonPress) { if (event->button() == Qt::LeftButton) { mousePressed = true; mousePoint = event->globalPos() - this->pos(); if (index == 5) { index = 1; } else { index++; } ui->widget->setStyleSheet(QString("background-image:url(:/image/%1.png);").arg(index)); return true; } else { exit(0); } } else if (event->type() == QEvent::MouseButtonRelease) { mousePressed = false; return true; } else if (event->type() == QEvent::MouseMove) { if (mousePressed && (event->buttons() && Qt::LeftButton)) { this->move(event->globalPos() - mousePoint); return true; } } return QWidget::eventFilter(watched, event); }
到此,關于“Qt如何實現無邊框背景透明窗體”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。