Crear botón en pyqt

Ejemplos de código

0
0

crear botón en pyqt

# needs to be imported first from from PyQt5.QtWidgets
from PyQt5.QtWidgets import QPushButton
btn = QPushButton("button1") # create it

# now you can add it to your layout
layout = QHBoxLayout() # from PyQt5.QtWidgets import QHBoxLayout
layout.addWidget(btn)
# or you can just add it to the window itself like:
btn = QPushButton("button1", self)

Páginas relacionadas

Páginas de ejemplo relacionadas

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................