mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 14:15:50 -06:00
33 lines
No EOL
728 B
Python
33 lines
No EOL
728 B
Python
import sys
|
|
from PyQt5.QtWidgets import (QWidget, QToolTip,
|
|
QPushButton, QApplication)
|
|
from PyQt5.QtGui import QFont
|
|
|
|
|
|
class Example(QWidget):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
self.initUI()
|
|
|
|
def print_hello(self):
|
|
print("Hello")
|
|
|
|
|
|
def initUI(self):
|
|
btn = QPushButton('Button', self)
|
|
btn.clicked.connect(self.print_hello)
|
|
btn.resize(btn.sizeHint())
|
|
btn.move(50, 50)
|
|
|
|
self.setGeometry(300, 300, 300, 200)
|
|
self.setWindowTitle('Example')
|
|
self.show()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app = QApplication(sys.argv)
|
|
ex = Example()
|
|
sys.exit(app.exec_()) |