33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
|
# Form implementation generated from reading ui file 'examples\designerExample.ui'
|
||
|
#
|
||
|
# Created by: PyQt6 UI code generator 6.0.0
|
||
|
#
|
||
|
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
|
||
|
# run again. Do not edit this file unless you know what you are doing.
|
||
|
|
||
|
|
||
|
from PyQt6 import QtCore, QtGui, QtWidgets
|
||
|
|
||
|
|
||
|
class Ui_Form(object):
|
||
|
def setupUi(self, Form):
|
||
|
Form.setObjectName("Form")
|
||
|
Form.resize(400, 300)
|
||
|
self.gridLayout = QtWidgets.QGridLayout(Form)
|
||
|
self.gridLayout.setObjectName("gridLayout")
|
||
|
self.plotBtn = QtWidgets.QPushButton(Form)
|
||
|
self.plotBtn.setObjectName("plotBtn")
|
||
|
self.gridLayout.addWidget(self.plotBtn, 0, 0, 1, 1)
|
||
|
self.plot = PlotWidget(Form)
|
||
|
self.plot.setObjectName("plot")
|
||
|
self.gridLayout.addWidget(self.plot, 1, 0, 1, 1)
|
||
|
|
||
|
self.retranslateUi(Form)
|
||
|
QtCore.QMetaObject.connectSlotsByName(Form)
|
||
|
|
||
|
def retranslateUi(self, Form):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
Form.setWindowTitle(_translate("Form", "PyQtGraph"))
|
||
|
self.plotBtn.setText(_translate("Form", "Plot!"))
|
||
|
from pyqtgraph import PlotWidget
|