前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >PyQt5--TextDrag

PyQt5--TextDrag

作者头像
py3study
发布2020-01-19 11:19:48
2780
发布2020-01-19 11:19:48
举报
文章被收录于专栏:python3python3
代码语言:javascript
复制
 1 # -*- coding:utf-8 -*-
 2 '''
 3 Created on Sep 21, 2018
 4 
 5 @author: SaShuangYiBing
 6 
 7 Comment: 
 8 '''
 9 import sys
10 from PyQt5.QtWidgets import QApplication,QWidget,QPushButton,QLineEdit
11 
12 class Button(QPushButton):
13     def __init__(self,title,parent):
14         super().__init__(title,parent)
15         self.setAcceptDrops(True)
16         
17     def dragEnterEvent(self,e):
18         if e.mimeData().hasFormat('text/Plain'):
19             e.accept()
20         else:
21             e.ignore()
22     
23     def dropEvent(self,e):
24         self.setText(e.mimeData().text())
25 
26 class New_test(QWidget):
27     def __init__(self):
28         super().__init__()
29         self.initUI()
30         
31     def initUI(self):
32         edit = QLineEdit('',self)
33         edit.setDragEnabled(True)
34         edit.move(30,65)
35         
36         button = Button('Button',self)
37         button.move(190,65)
38         
39         self.setWindowTitle('Simple drag & drop')
40         self.setGeometry(300,300,300,150)
41         self.show()
42         
43 if __name__ == '__main__':
44     app = QApplication(sys.argv)
45     ex = New_test()
46     sys.exit(app.exec_())
47         

在文本框中输入的内容,随意选中其中部分字符可进行拖拽(类似复制)

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-03-12 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档