Resize a pane in javafx by dragging it

viper

I have 2 pane the bigger one and the smaller one. I want to make the smaller pane resize by dragging it accordingly ; just the way a window works.

ItachiUchiha

All the panes, except Group are re-sizable in JavaFx. Just make sure you have, your resizable property of the stage as true.

The default value is true !

stage.setResizable(true);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related