Posts by Rodrigo Albuquerque • 1 point
4 posts
-
-1
votes1
answer441
viewsQ: JAVAFX How to change the label after FXML is built?
I have a label on Scene B. I want to change this label when the user clicks on the "Login" button on the first screen. I tried to do this in my project with the usuario.setText() (user is the label…
-
-1
votes1
answer63
viewsQ: Error changing label - Javafx
I’m trying to change a label lbl1 by the FXML controller builder method. public class TestController extends Application { @FXML private Label lbl1; public TestController() { lbl1.setText("Teste");…
-
0
votes1
answer81
viewsQ: Error trying to change Javafx application icon
Hello. I am developing an application in Javafx and I am trying to change the icon of my application according to the code below: public class Login extends Application { Image applicationIcon = new…
-
0
votes0
answers21
viewsQ: Multiple FXML within the same Javafx scene
I have the following scene at Javafx: I want the user to click on the buttons "Customers", "Products" or "Suppliers", open the FXML corresponding to each of these buttons that I will create in other…