13

Should I use the BorderPane layout and add a label at the bottom?

Is there a better way?

Darth Ninja
  • 1,049
  • 2
  • 11
  • 34

2 Answers2

6

It depends a bit on what you want to do with it but the ControlsFX package has a dedicated StatusBar. May be it is worth having a look at it.

https://github.com/controlsfx/controlsfx/tree/master/controlsfx/src/main/java/org/controlsfx/control

Richard Jessop
  • 897
  • 1
  • 12
  • 19
mipa
  • 10,369
  • 2
  • 16
  • 35
4

I ended up using a VBox for my usecase. But the BorderPane can work equally well - depends on your usecase. If others have better suggestions feel free to chime in.

Darth Ninja
  • 1,049
  • 2
  • 11
  • 34