Share the post "How To Make Round Corners In Stage Window In Java FX Using CSS"
The nice thing about Java FX is how CSS can easily be used to style the user interface. Making rounded corners on a window looks tedious when done programmatically.
However, with the use of CSS, this can easily be done.
|
1 2 3 |
.root { -fx-background-radius: 10; } |
Easy, right?