PyQt5使用多个窗口传递数据的2种方法

1、通过窗口类的属性来传递参数

# 窗口之间数据传递(通过属性来进行消息传递)
from PyQt5.QtWidgets import QDialogButtonBox, QDateTimeEdit, QDialog, QComboBox, QTableView, QAbstractItemView, \
    QHeaderView, QTableWidget, QTableWidgetItem, QMessageBox, QListWidget, QListWidgetItem, QStatusBar, QMenuBar, QMenu, \
    QAction, QLineEdit, QStyle, QFormLayout, QVBoxLayout, QWidget, QApplication, QHBoxLayout, QPushButton, QMainWindow, \
    QGridLayout, QLabel
from PyQt5.QtGui import QIcon, QPixmap, QStandardItem, QStandardItemModel, QCursor, QFont, QBrush, QColor, QPainter, \
    QMouseEvent, QImage, QTransform
from PyQt5.QtCore import QStringListModel, QAbstractListModel, QModelIndex, QSize, Qt, QObject, pyqtSignal, QTimer, \
    QEvent, QDateTime, QDate

import sys


class Win(QWidget):
    def __init__(self, parent=None):
        super(Win, self).__init__(parent)
        self.resize(400, 400)

        self.btn = QPushButton("按钮", self)
        self.btn.move(50, 50)
        self.btn.setMinimumWidth(80)


        self.label = QLabel('显示信息', self)
        self.label.setMinimumWidth(420)

        self.btn.clicked.connect(self.fn)   # 按钮绑定槽函数

    # 显示子窗口传来的日期字符串或者其他数据
    def fn(self):
        # 调用静态方法,无需实例化
        date, time, res = Child_Dialog.getResult(self)
        print(date, time, res)
        # 直接实例化自定义的对话框类
        # dialog=Child_Dialog()
        # res=dialog.exec_()	# 阻塞运行,直到窗口关闭
        # date=dialog.datetime.date()
        # time=dialog.datetime.time()
        # print(res,date,time)


# 弹出框对象
class Child_Dialog(QDialog):

    def __init__(self, parent=None):
        super(Child_Dialog, self).__init__(parent)
        layout = QVBoxLayout(self)
        self.label = QLabel(self)
        self.datetime = QDateTimeEdit(self)
        self.datetime.setCalendarPopup(True)
        self.datetime.setDateTime(QDateTime.currentDateTime())
        self.label.setText("请选择日期")
        layout.addWidget(self.label)
        layout.addWidget(self.datetime)

        buttons = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel, Qt.Horizontal, self)
        buttons.accepted.connect(self.accept)  # 点击ok,该方法默认存在
        buttons.rejected.connect(self.reject)  # 点击cancel,该方法默认存在
        layout.addWidget(buttons)

    # 该方法在父类方法中调用,直接打开了子窗体,返回值则用于向父窗体数据的传递
    @staticmethod
    def getResult(self, parent=None):
        dialog = Child_Dialog(parent)
        result = dialog.exec_()
        d = dialog.datetime.dateTime()
        return (d.date(), d.time(), result)


if __name__ == '__main__':
    app = QApplication(sys.argv)
    win = Win()
    win.show()
    sys.exit(app.exec_())

2、窗口之间使用自定义信号和槽机制传参

#窗口之间数据传递(通过属性方式)
from PyQt5.QtWidgets import QDialogButtonBox, QDateTimeEdit,QDialog,QComboBox,QTableView,QAbstractItemView,QHeaderView,QTableWidget, QTableWidgetItem, QMessageBox,QListWidget,QListWidgetItem, QStatusBar,  QMenuBar,QMenu,QAction,QLineEdit,QStyle,QFormLayout,   QVBoxLayout,QWidget,QApplication ,QHBoxLayout, QPushButton,QMainWindow,QGridLayout,QLabel
from PyQt5.QtGui import QIcon,QPixmap,QStandardItem,QStandardItemModel,QCursor,QFont,QBrush,QColor,QPainter,QMouseEvent,QImage,QTransform
from PyQt5.QtCore import QStringListModel,QAbstractListModel,QModelIndex,QSize,Qt,QObject,pyqtSignal,QTimer,QEvent,QDateTime,QDate

import sys
class Win(QWidget):
    def __init__(self,parent=None):
        super(Win, self).__init__(parent)
        self.resize(400,400)

        self.btn=QPushButton("按钮",self)
        self.btn.move(50,50)
        self.btn.setMinimumWidth(120)
        self.btn.clicked.connect(self.openDialog)   # 按钮绑定槽函数,用于打开子窗口

        self.label=QLabel('这里显示信息',self)
        self.label.setMinimumWidth(420)

    #打开Dialog
    def openDialog(self):
        dialog=Child_Dialog(self)
        #连接【子窗口内置消息和主窗口的槽函数】
        dialog.datetime.dateChanged.connect(self.slot_inner)    # 日历控件自带的信号
        #连接【子窗口自定义消息和主窗口槽函数】
        dialog.dialogSignel.connect(self.slot_emit)             # 子窗口的自定义消息,用于传递参数
        dialog.show()       # 非阻塞
        # dialog.exec_()        # 阻塞
    def slot_inner(self,date):
        print("主窗口:method_1")
        self.label.setText("①"+str(date)+">>内置消息获取日期为")


    def slot_emit(self,flag,str):
        print("主窗口:method_2")
        print(flag)
        if flag=="0":#点击ok
          self.label.setText("②"+str(str)+">>自定义消息")
        else:#点击cancel
          self.label.setText(str)

#弹出框对象
class Child_Dialog(QDialog):
    #自定义消息
    dialogSignel=pyqtSignal(int,str)

    def __init__(self,parent=None):
        super(Child_Dialog, self).__init__(parent)
        layout=QVBoxLayout(self)
        self.label=QLabel(self)
        self.datetime=QDateTimeEdit(self)
        self.datetime.setCalendarPopup(True)
        self.datetime.setDateTime(QDateTime.currentDateTime())
        self.label.setText("请选择日期")
        layout.addWidget(self.label)
        layout.addWidget(self.datetime)

        buttons=QDialogButtonBox(QDialogButtonBox.Ok|QDialogButtonBox.Cancel,Qt.Horizontal,self)
        buttons.accepted.connect(self.accept)#点击ok
        buttons.rejected.connect(self.reject)#点击cancel
        layout.addWidget(buttons)
    def accept(self):#点击ok是发送内置信号
        print("accept")
        self.dialogSignel.emit(0,self.datetime.text())
        self.destroy()
    def reject(self):#点击cancel时,发送自定义信号
        print('reject')
        self.dialogSignel.emit(1,"清空")
        self.destroy()


if __name__=='__main__':

    app=QApplication(sys.argv)
    win = Win()
    win.show()
    sys.exit(app.exec_())
Python中,PyQt5是一个用于创建图形用户界面(GUI)的库,它基于Qt库。如果你想要在PyQt5应用程序中创建多个窗口,并需要在它们之传递信号,你可以这样做: 1. **信号(Signal)和槽(Slot)**: PyQT5使用`QObject`类及其派生类中的`pyqtSignal`和`pyqtSlot`来处理信号和连接。信号是在特定事件发生时发送的消息,而槽则是接收并处理这些信号的函数。 2. **实例化窗口**:每个窗口都是一个独立的`QObject`,因此可以有自己的信号和槽。例如,你可以在一个窗口中创建一个按钮的点击信号: ```python from PyQt5.QtWidgets import QMainWindow, QPushButton class ParentWindow(QMainWindow): buttonClicked = pyqtSignal() def __init__(self): super().__init__() self.button = QPushButton("Click me", self) self.button.clicked.connect(self.signal_handler) ``` 3. **信号处理函数**:在这个例子中,`signal_handler`函数就是槽,当按钮被点击时,会触发`buttonClicked`信号。 4. **传递信号**:在其他窗口接收到这个信号后,可以通过`connect`方法连接到相应的槽。例如,另一个窗口: ```python class ChildWindow(ParentWindow): def __init__(self, parent=None): super().__init__(parent) # 连接到父窗口的信号 self.parent_window = ParentWindow() self.parent_window.buttonClicked.connect(self.receive_signal) def receive_signal(self): print("Parent window's button was clicked!") ``` 当你在`ChildWindow`中的`receive_signal`函数中捕获到信号时,就实现了两个窗口的通信。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值