How can I achieve proportional resize of whole SplitPane?
public class JfxSplitPaneTest extends Application { @Override public void start(Stage stage
Try to set the divisors like AS3Boyan said
split.setDividerPositions(0.1f, 0.6f, 0.9f)
and add this:
How can I avoid a SplitPane to resize one of the panes when the window resizes?