Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

how to make a button disapear on click in javafx

public void letterChosen(ActionEvent event) {
    Button source = (Button) event.getSource();
    source.setVisible(false);
    System.out.println("pick: "+source.getUserData());
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #button #disapear #click #javafx
ADD COMMENT
Topic
Name
9+9 =