-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect_account.py
More file actions
32 lines (26 loc) · 1.42 KB
/
Copy pathselect_account.py
File metadata and controls
32 lines (26 loc) · 1.42 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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'select_account.ui'
#
# Created by: PyQt5 UI code generator 5.9.2
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_selectAccountDialog(object):
def setupUi(self, selectAccountDialog):
selectAccountDialog.setObjectName("selectAccountDialog")
selectAccountDialog.resize(648, 311)
self.buttonBox = QtWidgets.QDialogButtonBox(selectAccountDialog)
self.buttonBox.setGeometry(QtCore.QRect(-140, 200, 621, 32))
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
self.buttonBox.setObjectName("buttonBox")
self.select_account = QtWidgets.QComboBox(selectAccountDialog)
self.select_account.setGeometry(QtCore.QRect(110, 70, 441, 71))
self.select_account.setObjectName("select_account")
self.retranslateUi(selectAccountDialog)
self.buttonBox.accepted.connect(selectAccountDialog.accept)
self.buttonBox.rejected.connect(selectAccountDialog.reject)
QtCore.QMetaObject.connectSlotsByName(selectAccountDialog)
def retranslateUi(self, selectAccountDialog):
_translate = QtCore.QCoreApplication.translate
selectAccountDialog.setWindowTitle(_translate("selectAccountDialog", "Select Account"))