In JavaFX, is there something similar to setLayout(); or setBounds();?
setLayout();
setBounds();
For example, I want to position a button to a position that I desir
You should read up on the Node class (the long text at the beginning), and then especially relocate, setLayoutX (and Y) and setTranslateX (and Y).