I've created a small form (1 button, 2 textboxes and 1 label) using QDesigner, and converted it to Python.
I can show the form using Python but I don't know how to click the button and show the result of adding the values in the 2 textboxes, on the label.
The code that shows the form is this:
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 your help.