0
Good,
I designed a widget in Qt Desginer, and converted to python, and using the tutorial, I can run the widget (two textbox, 1 button and a label). The idea is to add the contents of the boxes, press the button and display the result on a label.
However, I can only run the widget, I don’t know how to read the text boxes or how to associate code at the click of the button.
The code that runs the widget is as follows:
from PyQt5 import uic
from PyQt5.QtWidgets import QApplication
Form, Window, Button = uic.loadUiType("PYQT_TUTORIAL.ui")
app = QApplication([])
window = Window()
form = Form()
form.setupUi(window)
window.show()
app.exec_()
Thanks for the help, regards.