Created
October 10, 2019 15:43
-
-
Save BMU-Verlag/188d40e5368933a18d3c281420440bc9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Button fx:id="add" onAction="#prepareOperation" text="+" GridPane.columnIndex="3" GridPane.rowIndex="0" /> | |
<Button fx:id="subtract" onAction="#prepareOperation" text="-" GridPane.columnIndex="3" GridPane.rowIndex="1" /> | |
<Button fx:id="multiply" onAction="#prepareOperation" text="*" GridPane.columnIndex="3" GridPane.rowIndex="2" /> | |
<Button fx:id="divide" onAction="#prepareOperation" text="/" GridPane.columnIndex="3" GridPane.rowIndex="3" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment