Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I avoid a SplitPane to resize one of the panes when the window resizes?

I want to resize the pane only manually dragging the splitter with the mouse. But when the window is resized, I would like that pane to keep the exact size that I chose. Allowing the other pane to change size freely.

Do you think of any way to accomplish this?

like image 796
betaman Avatar asked Jun 12 '12 15:06

betaman


1 Answers

You should use SplitPane.setResizableWithParent static method.

        SplitPane root = new SplitPane();

        final Pane paneFixed = new StackPane();
        paneFixed.getChildren().add(new Text("fixed"));

        SplitPane.setResizableWithParent(paneFixed, Boolean.FALSE);

        Pane paneFree = new StackPane();
        paneFree.getChildren().add(new Text("free"));

        root.getItems().addAll(paneFree, paneFixed);

        stage.setScene(new Scene(root, 300, 200));
        stage.show();
like image 135
Sergey Grinev Avatar answered Nov 14 '22 07:11

Sergey Grinev