-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpk.py
More file actions
executable file
·44 lines (37 loc) · 1.94 KB
/
pk.py
File metadata and controls
executable file
·44 lines (37 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'pk.ui'
#
# Created by: PyQt5 UI code generator 5.15.0
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Form(object):
def setupUi(self, Form):
Form.setObjectName("Form")
Form.resize(743, 430)
self.horizontalLayoutWidget = QtWidgets.QWidget(Form)
self.horizontalLayoutWidget.setGeometry(QtCore.QRect(-10, 360, 756, 51))
self.horizontalLayoutWidget.setObjectName("horizontalLayoutWidget")
self.horizontalLayout = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget)
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
self.horizontalLayout.setObjectName("horizontalLayout")
self.pushButton_1 = QtWidgets.QPushButton(self.horizontalLayoutWidget)
self.pushButton_1.setObjectName("pushButton_1")
self.horizontalLayout.addWidget(self.pushButton_1)
self.pushButton_2 = QtWidgets.QPushButton(self.horizontalLayoutWidget)
self.pushButton_2.setObjectName("pushButton_2")
self.horizontalLayout.addWidget(self.pushButton_2)
self.listView = QtWidgets.QListView(Form)
self.listView.setGeometry(QtCore.QRect(30, 20, 691, 241))
self.listView.setObjectName("listView")
self.portSelectBox = QtWidgets.QComboBox(Form)
self.portSelectBox.setGeometry(QtCore.QRect(370, 330, 361, 22))
self.portSelectBox.setObjectName("portSelectBox")
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
def retranslateUi(self, Form):
_translate = QtCore.QCoreApplication.translate
Form.setWindowTitle(_translate("Form", "Modbus"))
self.pushButton_1.setText(_translate("Form", "Close"))
self.pushButton_2.setText(_translate("Form", "Disable Display"))