pyqt5无法将边框应用于无框架窗口 [英] pyqt5 can't apply border to framelesswindow

查看:70
本文介绍了pyqt5无法将边框应用于无框架窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我通过pyqt5中的setStyleSheet函数应用了边框宽度和边框颜色.但是,当我在无框窗口中使用它时,没有应用边框.我的代码有任何问题吗?我需要帮助.这是我的代码.

I applied border width and border color via setStyleSheet funciton in pyqt5. But when I use it in frameless window, border not applied. any issue in my code? I need help. Here comes my code.

import sys
from PyQt5.QtWidgets import QWidget,QApplication
from PyQt5.QtCore import Qt,QPoint

class CommonFramelessWidget(QWidget):
    def __init__(self,parent):
        super(CommonFramelessWidget,self).__init__(parent)
        self.setWindowFlags(Qt.Window|Qt.FramelessWindowHint)
        self.setStyleSheet('border:5px  black; background-color:red;')

    def mousePressEvent(self, event):
        self.oldPos = event.globalPos()
    def mouseMoveEvent(self,e):
        delta = QPoint (e.globalPos() - self.oldPos)
        self.move(self.x() + delta.x(), self.y() + delta.y())
        self.oldPos = e.globalPos()


if __name__ == "__main__":
    app = QApplication(sys.argv)
    mw = CommonFramelessWidget(None)
    mw.show()
    sys.exit(app.exec_())

推荐答案

除了激活Qt :: WA_StyledBackground属性之外,还必须设置边框类型,以便它使用样式表的信息作为背景样式:

You have to set the border type, in addition to activating the Qt::WA_StyledBackground attribute so that it uses the information of the stylesheet as the background style:

import sys
from PyQt5.QtWidgets import QWidget, QApplication
from PyQt5.QtCore import Qt, QPoint


class CommonFramelessWidget(QWidget):
    def __init__(self, parent=None):
        super(CommonFramelessWidget, self).__init__(parent)
        self.setWindowFlags(Qt.Window | Qt.FramelessWindowHint)
        self.setStyleSheet("border: 5px solid black; background-color:red;")
        self.setAttribute(Qt.WA_StyledBackground)

        self.resize(640, 480)

    def mousePressEvent(self, event):
        self.oldPos = event.globalPos()
        super(CommonFramelessWidget, self).mousePressEvent(event)

    def mouseMoveEvent(self, e):
        delta = QPoint(e.globalPos() - self.oldPos)
        self.move(self.pos() + delta)
        self.oldPos = e.globalPos()
        super(CommonFramelessWidget, self).mouseMoveEvent(e)


if __name__ == "__main__":
    app = QApplication(sys.argv)
    mw = CommonFramelessWidget()
    mw.show()
    sys.exit(app.exec_())

这篇关于pyqt5无法将边框应用于无框架窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆