pyqt点击按钮执行脚本

class NineGridApp(QWidget):

def init(self):

super().init()

self.initUI()

def initUI(self):

self.setWindowTitle('测试常见的操作')

self.setGeometry(100, 100, 1800, 1800)

layout = QGridLayout()

创建一个3x3的二维数组

rows = 3

cols = 3

array_2d = [[0 for _ in range(cols)] for _ in range(rows)]

修改特定位置的元素

array_2d[0][0] = "json转excel"

array_2d[0][1] = "excel转json"

array_2d[0][2] = "登录服务器"

array_2d[1][0] = "文件去重"

array_2d[1][1] = "统计成功率"

array_2d[1][2] = "文件整理"

array_2d[2][0] = "文件输出"

array_2d[2][1] = "计算题统计"

array_2d[2][2] = "知识题统计"

for i in range(3):

for j in range(3):

button = QPushButton(array_2d[i][j], self)

res=i+j*3

layout.addWidget(button, i, j)

设置按钮的大小

button.setFixedSize(150, 150)

button.clicked.connect(self.showMessageBox)

设置按钮的颜色

button.setStyleSheet("background-color: blue; color: white;")

self.setLayout(layout)

self.show()

def json_to_excel(self):

print("AAAAA")

def excel_to_json(self):

print("BBBBB")

def showMessageBox(self):

sender = self.sender() # 获取发送信号的按钮

print(sender)

button_text = sender.text()

print(button_text)

if button_text=='json转excel':

dialog = RegisterDialog()

dialog.exec_() # 显示注册对话框

self.json_to_excel()

elif button_text=='excel转json':

self.excel_to_json()

elif button_text=='登录服务器':

pass

QMessageBox.information(self, '提示', f'helo')

if name == 'main':

app = QApplication(sys.argv)

window = NineGridApp()

sys.exit(app.exec_())

相关推荐
接着奏乐接着舞。10 分钟前
如何在 Three.js 地球飞线中间生成卡片
开发语言·javascript·ecmascript
Dack46619 分钟前
1.1、Python3基础语法
笔记·python
阿泽不想掉光头发27 分钟前
C#实现调用DLL 套壳读卡程序(桌面程序开发)
java·开发语言·后端·websocket·http·c#
m0_7482400232 分钟前
Python毕业设计选题:基于协同过滤的动漫推荐系统设计与实现_django+hive+spider
python·django·课程设计
bglmmz33 分钟前
JPA查询部分字段的最佳实践
java·开发语言
Marzlam41 分钟前
C# IDisposable接口 与析构函数
开发语言·c#
高锰酸钾_44 分钟前
Python数据可视化小项目
python·信息可视化·数据分析
峰子20121 小时前
Go语言实现守护进程的挑战
开发语言·后端·面试·架构·golang·go
m0_748237151 小时前
PHP实现登录和注册(附源码)
开发语言·php
tealcwu1 小时前
【游戏设计原理】32 - 消费者剩余
java·开发语言·游戏