码迷,mamicode.com
首页 > 编程语言 > 详细

python_设计和业务分离

时间:2017-12-22 15:59:41      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:title   orm   _for   day   main   this   UI   sys   code   

成功案例:

设计窗口

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file ‘day2.ui‘
#
# Created by: PyQt5 UI code generator 5.4.1
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_Form(object):
    def setupUi(self, Form):
        Form.setObjectName("Form")
        Form.resize(400, 300)
        self.lineEdit = QtWidgets.QLineEdit(Form)
        self.lineEdit.setGeometry(QtCore.QRect(140, 100, 113, 20))
        self.lineEdit.setObjectName("lineEdit")

        self.retranslateUi(Form)
        QtCore.QMetaObject.connectSlotsByName(Form)

    def retranslateUi(self, Form):
        _translate = QtCore.QCoreApplication.translate
        Form.setWindowTitle(_translate("Form", "Form"))

if __name__=="__main__":
    import sys
    app=QtWidgets.QApplication(sys.argv)
    widget = QtWidgets.QWidget()
    ui = Ui_Form()
    ui.setupUi((widget))
    widget.show()
    sys.exit(app.exec_())

业务代码:

import sys
from PyQt5.QtWidgets import QApplication,QWidget
from day2 import Ui_Form

class myform(QWidget,Ui_Form):
    def __init__(self):
        super().__init__()
        self.setupUi(self)
        # self.lineEdit.textChanged.connect(self.label.setText)
                        
if __name__==__main__:
    app=QApplication(sys.argv)
    w=myform()
    w.show()
    app.exec_()  

 

python_设计和业务分离

标签:title   orm   _for   day   main   this   UI   sys   code   

原文地址:http://www.cnblogs.com/Bingo0-python/p/8086080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!