Skip to content

Instantly share code, notes, and snippets.

@ugeugeHigh
Created November 17, 2019 07:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ugeugeHigh/ff9c471f68dffd8b659d3c5082f26cb3 to your computer and use it in GitHub Desktop.
Save ugeugeHigh/ff9c471f68dffd8b659d3c5082f26cb3 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'matplo.ui'
#
# Created by: PyQt5 UI code generator 5.11.3
#
# 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(540, 452)
self.pushButton = QtWidgets.QPushButton(Form)
self.pushButton.setGeometry(QtCore.QRect(220, 420, 111, 21))
self.pushButton.setObjectName("pushButton")
self.widget = QtWidgets.QWidget(Form)
self.widget.setGeometry(QtCore.QRect(20, 20, 501, 381))
self.widget.setObjectName("widget")
self.retranslateUi(Form)
self.pushButton.clicked.connect(Form.show_graph)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Form"))
self.pushButton.setText(_translate("Form", "PushButton"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment