当前位置: 首页 > news >正文

江苏网站建设系统方案网站建站价格

江苏网站建设系统方案,网站建站价格,wordpress代码高亮mac风格,2022年一建停考最新消息在上一篇文章中python之pyqt专栏6-信号与槽2-CSDN博客中,我们可以了解到对象可以使用内置信号,这些信号来自于类定义或者继承过来的。我们可以对这些信号可以通过connect连接槽函数。 需求 现在有一个需求,有两个UI界面“untitled.ui”和“u…

        在上一篇文章中python之pyqt专栏6-信号与槽2-CSDN博客中,我们可以了解到对象可以使用内置信号,这些信号来自于类定义或者继承过来的。我们可以对这些信号可以通过connect连接槽函数。

需求

        现在有一个需求,有两个UI界面“untitled.ui”和“untitled1.ui”,untitled.ui有一个lineEdit(行编辑)和一个button(按钮),untitled1.ui有一个Label。点击untitled.ui的button时,将行编辑的文本内容,设置为untitled1.uiLabel文本内容。

untitled.ui的对象列表

对象名类型
lineEditLlineEdit
pushButtonQPushButto

untitled1.ui的对象列表

对象名类型
labelQLabel

UI界面设置

untitled.ui  UI界面

       保存文件为untitled.ui

untitled1.ui  UI界面

        点击左上角“文件”->“新建”

        保存文件为untitled.ui 

         注:Qt Designer中,当有两个以上的UI编辑界面时,需要先选中的UI界面,再保存

 项目目录下“untitled.ui”“untitled1.ui”转换为“untitled.py”“untitled1.py”

main.py

# 导入sys模块
import sys
# PyQt6.QtWidgets模块中导入QApplication, QWidget
from PyQt6.QtWidgets import QApplication, QWidget
from PyQt6.QtCore import QObjectimport untitled
import untitled1class MyMainForm(QWidget, untitled.Ui_Form):sendText = pyqtSignal(str)def __init__(self, parent=None):# 调用父类的构造函数super(MyMainForm, self).__init__(parent)# 调用继承Ui_Form过来的setupUi函数self.setupUi(self)self.pushButton.clicked.connect(self.btn_clicked)class MyMainForm1(QWidget, untitled1.Ui_Form):def __init__(self, parent=None):# 调用父类的构造函数super(MyMainForm1, self).__init__(parent)# 调用继承Ui_Form过来的setupUi函数self.setupUi(self)self.move(1200,320)# Press the green button in the gutter to run the script.
if __name__ == '__main__':# 实例化应用app = QApplication(sys.argv)# 实例化MyMainFormmyw = MyMainForm()myw.show()myw1 = MyMainForm1()myw1.show()myw.sendText.connect(myw1.deal_signal)# 启动应用程序的事件循环并等待用户交互,直到应用程序关闭。sys.exit(app.exec())

        防止两个窗口重叠,在MyMainForm1移动一下位置

self.move(1200,320)

  

        有两个窗口,建立了两个类MyMainFormMyMainForm1,它们分别继承于untitled.Ui_Formuntitled1.Ui_Form

        需要注意的是untitled.py与untitled1.py都有Ui_Form,为了区分Ui_Form来源,不能用如下代码,否者会被Ui_Form会被后面的取代

from untitled import Ui_Form
from untitled1 import Ui_Form

         正确书写应该是这样

import untitled
import untitled1
class MyMainForm(QWidget, untitled.Ui_Form):
class MyMainForm1(QWidget, untitled1.Ui_Form):

  问题

        在MyMainForm,button被点击时会发出clicked信号,如果用将buttonclicked信号,绑定槽函数,在这个槽函数里面可以实现获取lineEdit的文本内容,代码如下

self.pushButton.clicked.connect(self.btn_clicked)
    def btn_clicked(self):# 获取行编辑文本str = self.lineEdit.text()

        MyMainForm与MyMainForm1,它们是两个类,没有直接关系这个槽函数在MyMainForm中,不能修改MyMainForm1的label,也就是不能通过如下代码

    def btn_clicked(self):# 获取行编辑文本str = self.lineEdit.text()self.label.setText(str)

 自定义信号

          如果我们可以在untitled.pyUi_Form自定义一个信号(sendText),这个信号通过connect绑定untitled1.pyUi_Form类函数(deal_signal),那么它们就会建立关系。

 myw.sendText.connect(myw1.deal_signal)
修改代码如下

# 导入sys模块
import sys
# PyQt6.QtWidgets模块中导入QApplication, QWidget
from PyQt6.QtWidgets import QApplication, QWidget
from PyQt6.QtCore import QObject, pyqtSignalimport untitled
import untitled1class MyMainForm(QWidget, untitled.Ui_Form):sendText = pyqtSignal(str)def __init__(self, parent=None):# 调用父类的构造函数super(MyMainForm, self).__init__(parent)# 调用继承Ui_Form过来的setupUi函数self.setupUi(self)self.pushButton.clicked.connect(self.btn_clicked)def btn_clicked(self):# 获取行编辑文本str = self.lineEdit.text()self.sendText.emit(str)class MyMainForm1(QWidget, untitled1.Ui_Form):def __init__(self, parent=None):# 调用父类的构造函数super(MyMainForm1, self).__init__(parent)# 调用继承Ui_Form过来的setupUi函数self.setupUi(self)self.move(1200,320)def deal_signal(self,str):self.label.setText(str)# Press the green button in the gutter to run the script.
if __name__ == '__main__':# 实例化应用app = QApplication(sys.argv)# 实例化MyMainFormmyw = MyMainForm()myw.show()myw1 = MyMainForm1()myw1.show()myw.sendText.connect(myw1.deal_signal)# 启动应用程序的事件循环并等待用户交互,直到应用程序关闭。sys.exit(app.exec())
      自定义信号过程
      1)导入 pyqtSignal类 
from PyQt6.QtCore import  pyqtSignal
        2)定义类中信号属性,“str”是参数
sendText = pyqtSignal(str)
      3)信号与槽绑定
myw.sendText.connect(myw1.deal_signal)
       4)发送信号

self.sendText.emit(str)

          在该项目功能需求中,需要获取MyMainFormlineEdit的内容,将其内容传递传递给MyMainForm1的deal_signal,并在deal_signal对MyMainForm1的文本设置,因此需要形参“str”,如果自定义信号不需要传递内容,则不需要添形参,如下代码即可

sendText = pyqtSignal()

最终实现

         

http://www.dt0577.cn/news/2173.html

相关文章:

  • 境外电商平台入驻seo工资一般多少
  • 韶关做网站的公司常州网站制作维护
  • 中国建设银行网站官网厦门关键词排名推广
  • 网站建设对企业的重要性2345网址导航官网
  • 网站设计优缺点友情链接英文翻译
  • 手机端网站开发页外贸营销网站
  • 惠州营销网站制作搜索seo优化托管
  • 什么网站做adsense好黄页网站推广
  • 南京网站建设流程专业网络推广公司排名
  • wordpress walker直通车关键词优化口诀
  • 中国建设教育协会的是假网站吗优化 英语
  • 如何利用分类信息网站做推广使用 ahrefs 进行 seo 分析
  • vs2010做网站教程百度百度一下
  • 做网站需要什么配置服务器西安专业做网站公司
  • 电脑购物网站模板网络营销方式方法
  • 那个网站报道过鸟巢建设长沙网站制作
  • wordpress自定义路由seo是搜索引擎优化吗
  • 200做网站海外seo是什么
  • 江苏水利工程建设局网站h5网站制作平台
  • 扶贫基金会网站建设是哪家公司东莞seo建站推广费用
  • 兼职网网站建设方案建议书seo接单平台有哪些
  • 四川做网站设计公司价格搜索引擎优化 简历
  • 公司对网站排名如何做绩效seo和sem的区别是什么
  • 开彩票网站做私庄百度旗下的所有产品
  • 网wordpress站底部图片悬浮互联网
  • 网站开发与设计 信科企业培训考试系统
  • 哈尔滨手机网站制作培训网站推荐
  • 可以建设彩票网站吗微信软文推广怎么做
  • asp做网站 的pdf教程seo效果检测步骤
  • 南京做网站联系南京乐识苏州seo免费咨询