Skip to content

Instantly share code, notes, and snippets.

@cfierbin
Created May 6, 2014 08:48
Show Gist options
  • Save cfierbin/678d71eb26f1c6b2b220 to your computer and use it in GitHub Desktop.
Save cfierbin/678d71eb26f1c6b2b220 to your computer and use it in GitHub Desktop.
JavaFX Calculator with Lambdas
//create buttons
Button seven = new Button("7");
seven.setOnMouseClicked(e -> {
displayField.setText(displayField.getText() + "7");
});
seven.setPrefWidth(PREF_BUTTON_WIDTH);
moreButtons.add(seven,0,0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment