摘要: 1、使用剪切板import sys,mathfrom PyQt5.QtWidgets import *from PyQt5.QtGui import *from PyQt5.QtCore import *class Clipboard(QDialog): def __init__(self): su 阅读全文
posted @ 2020-02-11 09:50 The-Chosen-One 阅读(1551) 评论(0) 推荐(0) 编辑
摘要: 1、创建菜单栏import sys, mathfrom PyQt5.QtWidgets import *from PyQt5.QtGui import *from PyQt5.QtCore import *class menu(QMainWindow): def __init__(self): su 阅读全文
posted @ 2020-02-11 09:45 The-Chosen-One 阅读(1454) 评论(0) 推荐(0) 编辑
摘要: 1、日历控件QCalendarWidget控件import sys,mathfrom PyQt5.QtWidgets import *from PyQt5.QtGui import *from PyQt5.QtCore import *class mycalendar(QWidget): def _ 阅读全文
posted @ 2020-02-11 09:34 The-Chosen-One 阅读(2416) 评论(0) 推荐(1) 编辑
摘要: 让控件支持拖拽动作A.setDragEnable(True) 设置A可以拖动B.setAcceptDrops(True) 设置B可以接受拖动B需要满足两个事件1.dragEnterEvent 将A拖到B触发2.dropEvent 在B的区域放下A时发生触发具体实现代码如下所示:import sys, 阅读全文
posted @ 2020-02-11 09:25 The-Chosen-One 阅读(5930) 评论(0) 推荐(0) 编辑
摘要: PyQt5绘图API大全1、绘图API:绘制文本#1.文本 2.各种图形 3.图像#QPainter painter=QPainter() painter.begin() painter.end() painter.drawtext() 必须在painevent事件方法中绘制各种元素import s 阅读全文
posted @ 2020-02-11 09:21 The-Chosen-One 阅读(2798) 评论(0) 推荐(0) 编辑