Skip to content

Instantly share code, notes, and snippets.

@cfierbin
Created May 6, 2014 08:48
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