from
PyQt5.QtWidgets
import
*
from
PyQt5.QtGui
import
*
from
PyQt5.QtCore
import
*
import
sys
class
Window(QMainWindow):
def
__init__(
self
):
super
().__init__()
self
.setWindowTitle(
"Python "
)
self
.setGeometry(
100
,
100
,
600
,
400
)
self
.UiComponents()
self
.show()
def
UiComponents(
self
):
button
=
QPushButton(
"CLICK"
,
self
)
button.setGeometry(
200
,
150
,
100
,
40
)
button.setStyleSheet(
"color : rgba(0, 0, 0, 100)"
)
button.clicked.connect(
self
.clickme)
def
clickme(
self
):
print
(
"pressed"
)
App
=
QApplication(sys.argv)
window
=
Window()
sys.exit(App.
exec
())