I building a desktop app in Eclipse Oxygen.1a Release (4.7.1a) using JavaFX, which will be my first. I have created a file called PersonOverview.fxml and I have added the following code to my code;
<ButtonBar>
<buttons>
<Button text="New" ButtonBar.buttonData="LEFT" />
<Button text="Save" ButtonBar.buttonData="RIGHT" />
</buttons>
</ButtonBar>
JavaFX Scene Builder 2.0 does not seem to recognize the element -
ButtonBar
I am wondering if there is an alternative to this. I would like to add a group of buttons to my GUI at the very bottom right of the GUI. Something like this;