Skip to content

Instantly share code, notes, and snippets.

@npatta01
Created April 23, 2013 07:25
Show Gist options
  • Save npatta01/5441497 to your computer and use it in GitHub Desktop.
Save npatta01/5441497 to your computer and use it in GitHub Desktop.
SampleController: referencing gui components in te controller
......
public class SampleController implements Initializable {
@FXML
private Label label;
@FXML
private void handleButtonAction(ActionEvent event) {
System.out.println("You clicked me!");
label.setText("Hello World!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment