1 Star 0 Fork 6

雾散睛明/ColorPicker

forked from samwongcn/ColorPicker 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myqlabel.cpp 886 Bytes
一键复制 编辑 原始数据 按行查看 历史
thunderobot 提交于 2017-07-21 13:15 . Add files via upload
#include "myqlabel.h"
MyQLabel::MyQLabel(QWidget *parent):QLabel(parent)
{
}
void MyQLabel::paintEvent(QPaintEvent *event){
QLabel::paintEvent(event);//先调用父类的paintEvent为了显示'背景'!!!
QColor color(221,80,68);
QPen pen(color);
QPainter painter(this) ;
painter.setPen(pen);
QRect rect(this->width() / 2 ,this->height() / 2 +12,9,9);
painter.drawRect(rect);
painter.drawLine(this->width() / 2 - 9,this->height() / 2 +16.5,this->width() / 2 ,this->height() / 2 +16.5);
painter.drawLine(this->width() / 2+9 ,this->height() / 2 +16.5,this->width() / 2+18,this->height() / 2 +16.5);
painter.drawLine(this->width() / 2+4.5 ,this->height() / 2 + 3,this->width() / 2+4.5,this->height() / 2 +12);
painter.drawLine(this->width() / 2+4.5 ,this->height() / 2 + 21,this->width() / 2+4.5,this->height() / 2 +30);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xinyuemoli/ColorPicker.git
[email protected]:xinyuemoli/ColorPicker.git
xinyuemoli
ColorPicker
ColorPicker
master

搜索帮助