forked from dloperab/Python-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
02_qpush_button.py
36 lines (28 loc) · 956 Bytes
/
02_qpush_button.py
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
import sys
from PyQt5 import QtGui
from PyQt5.QtWidgets import QApplication, QPushButton, QMainWindow
from PyQt5.QtCore import QRect
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.title = "PyQt5 Push Button"
self.top = 400
self.left = 400
self.width = 400
self.height = 400
self.icon_name = "images/home.png"
self.init_window()
def init_window(self):
self.setWindowIcon(QtGui.QIcon(self.icon_name))
self.setWindowTitle(self.title)
self.setGeometry(self.left, self.top, self.width, self.height)
self.init_ui_components()
self.show()
def init_ui_components(self):
button = QPushButton("Click me!", self)
# button.move(50, 50)
button.setGeometry(QRect(100, 100, 110, 30))
if __name__ == "__main__":
app = QApplication(sys.argv)
window = MainWindow()
sys.exit(app.exec())