Posts by Ailson • 1 point
1 post
-
0
votes1
answer413
viewsA: How to read text boxes, and create action from the button in Pyqt with a form created in Designer?
you will have to create a function to be able to call when the button is clicked ex: # função ler a textbox e realiza a soma def soma(self): valor1 = self.textbox1.Text() valor2 =…