Skip to content

Instantly share code, notes, and snippets.

@ugeugeHigh
Last active January 4, 2020 11:33
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/1d2e22b9b0aef008a5e797f170dc954e to your computer and use it in GitHub Desktop.
Save ugeugeHigh/1d2e22b9b0aef008a5e797f170dc954e to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'matplo_realtime.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(210, 410, 111, 21))
self.pushButton.setObjectName("pushButton")
self.widget = QtWidgets.QWidget(Form)
self.widget.setGeometry(QtCore.QRect(10, 10, 511, 391))
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