-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUi.py
More file actions
28 lines (21 loc) · 995 Bytes
/
Ui.py
File metadata and controls
28 lines (21 loc) · 995 Bytes
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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'Ui.ui'
#
# Created by: PyQt5 UI code generator 5.15.1
#
# 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_yellowballs(object):
def setupUi(self, yellowballs):
yellowballs.setObjectName("yellowballs")
yellowballs.resize(667, 443)
self.btn_draw = QtWidgets.QPushButton(yellowballs)
self.btn_draw.setGeometry(QtCore.QRect(250, 30, 93, 28))
self.btn_draw.setObjectName("btn_draw")
self.retranslateUi(yellowballs)
QtCore.QMetaObject.connectSlotsByName(yellowballs)
def retranslateUi(self, yellowballs):
_translate = QtCore.QCoreApplication.translate
yellowballs.setWindowTitle(_translate("yellowballs", "yellow balls"))
self.btn_draw.setText(_translate("yellowballs", "draw"))