“Tambahkan tombol pyqt5” Kode Jawaban

Ukuran jendela PYQT5

##### inside Qt class	
class Main(QWidget):
    def __init__(self, parent=None):
        super(Main, self).__init__(parent)
        
        width = 550
        height = 600

        self.setFixedWidth(width)
        self.setFixedHeight(height)
Assassin

Tambahkan tombol pyqt5

import sys
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton
from PyQt5.QtGui import QIcon
from PyQt5.QtCore import pyqtSlot

class App(QWidget):

    def __init__(self):
        super().__init__()
        self.title = 'PyQt5 button - pythonspot.com'
        self.left = 10
        self.top = 10
        self.width = 320
        self.height = 200
        self.initUI()
    
    def initUI(self):
        self.setWindowTitle(self.title)
        self.setGeometry(self.left, self.top, self.width, self.height)
        
        button = QPushButton('PyQt5 button', self)
        button.setToolTip('This is an example button')
        button.move(100,70)
        button.clicked.connect(self.on_click)
        
        self.show()

    @pyqtSlot()
    def on_click(self):
        print('PyQt5 button click')

if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = App()
    sys.exit(app.exec_())
discord dev

Jawaban yang mirip dengan “Tambahkan tombol pyqt5”

Pertanyaan yang mirip dengan “Tambahkan tombol pyqt5”

Lebih banyak jawaban terkait untuk “Tambahkan tombol pyqt5” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya