将节点添加到拆分窗格分隔器中

时间:2020-04-23 23:20:13

标签: javafx splitpane

我正在尝试找到一种解决方案,该解决方案如何将标签添加到拆分窗格的分隔符中,或者至少创建一种错觉。我的方法是将三个窗格添加到拆分窗格中,然后将中间窗格与两个分隔符一起拖动。问题在于,随着鼠标的快速移动,中间窗格会变大,但是如果我定义最大高度,则拖动将根本无法进行。

我的问题是,是否可以将标签直接插入分隔线,或者是否有人可以通过更好的解决方案来完成类似的任务。

MWE:

课程

public class MainSplit extends Application {

    @FXML
    private SplitPane splitPane;

    @FXML
    private Pane dividerPane;

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) throws IOException {
        FXMLLoader loader = new FXMLLoader(getClass().getResource("/splitpane.fxml"));
        loader.setController(this);
        Parent root = loader.load();

        AtomicReference<Double> start = new AtomicReference<>((double) 0);
        dividerPane.setOnMousePressed(event -> {
            start.set((1.0 / splitPane.getScene().getHeight()) * event.getSceneY());
        });

        dividerPane.setOnMouseDragged(event -> {
            double p = (1.0 / splitPane.getScene().getHeight()) * event.getSceneY();
            double diff = p - start.get();
            start.set(p);

            double[] d = splitPane.getDividerPositions();
            splitPane.setDividerPosition(0, d[0] + diff);
            splitPane.setDividerPosition(1, d[1] + diff);
        });

        primaryStage.setScene(new Scene(root));
        primaryStage.show();
    }
}

FXML

<SplitPane fx:id="splitPane" dividerPositions="0.36, 0.43" orientation="VERTICAL" prefHeight="400.0" prefWidth="400.0"
           xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
    <AnchorPane/>
    <Pane fx:id="dividerPane" minHeight="-Infinity" prefHeight="20.0" style="-fx-background-color: #4545;">
        <cursor>
            <Cursor fx:constant="V_RESIZE"/>
        </cursor>
    </Pane>
    <AnchorPane/>
</SplitPane>

0 个答案:

没有答案