5 Star 3 Fork 1

刘建平/360安全卫士界面

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Q360Label.py 982 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘建平 提交于 2018-06-16 11:38 . first commit
from PyQt5 import QtCore,QtWidgets,QtGui
from PyQt5.QtCore import QObject,QPropertyAnimation,QRect,QPoint
from PyQt5.QtWidgets import QWidget,QPushButton,QLabel
from PyQt5.QtGui import QBrush,QPixmap,QPainter,QFont,QFontMetrics,QColor
import lowmainres
import trayiconmenures
import upmainres
import centerwindres
class Q360Label(QLabel):
def __init__(self,pixscore,parent=None):
super(Q360Label, self).__init__(parent)
self.pixscore=QPixmap(pixscore)
def paintEvent(self, a0: QtGui.QPaintEvent):
pixscoreborder = QPixmap(":/image/examine_score.png")
p = QPainter(self)
p.drawPixmap(self.rect(),pixscoreborder)
p.drawPixmap((self.width()-self.pixscore.width())/2,(self.height() - self.pixscore.height())/2,self.pixscore)
font = QFont()
font.setPixelSize(14)
p.setFont(font)
p.drawText(self.width()/2+self.pixscore.width()/2-5,self.height()/2+self.pixscore.height()/2-5,"分")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/baiqilinux/360_security_guard_interface.git
[email protected]:baiqilinux/360_security_guard_interface.git
baiqilinux
360_security_guard_interface
360安全卫士界面
master

搜索帮助