JavaFX GridPane:如果内容被禁用且不可见,则收缩

时间:2017-03-15 06:47:46

标签: css javafx javafx-8

如果该行的内容同时被禁用且不可见,是否可以缩小GridPane行?

当我将Node设置为disable = true且visible = false时,单元格仍占用空间。

如果我有8行,只有第一个和最后一个可见,我不希望空行占用太多空间。好像只有两行。

我能找到的唯一“解决方案”是将大小设置为零。但是,我不认为这是一个很好的解决方案。当/如果节点再次启用/可见时,我将必须存储最小/最大尺寸以将其设置回来。 也许CSS可以帮助提供更好的解决方案吗?

package com.company;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.Priority;
import javafx.stage.Stage;

public class App extends Application {

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

    /* (non-Javadoc)
     * @see javafx.application.Application#start(javafx.stage.Stage)
     */
    @Override
    public void start(Stage stage) throws Exception {
        Label label1 = new Label("Text");
        Label label2 = new Label("Text");
        Label label3 = new Label("Text");

        label2.setDisable(true);
        label2.setVisible(false);

        GridPane root = new GridPane();
        root.setGridLinesVisible(true);
        root.add(label1, 0, 0);
        GridPane.setVgrow(label1, Priority.NEVER);
        root.add(label2, 0, 1);
        GridPane.setVgrow(label2, Priority.NEVER);
        root.add(label3, 0, 2);
        GridPane.setVgrow(label3, Priority.NEVER);

        stage.setScene(new Scene(root));
        stage.setWidth(300);
        stage.setHeight(300);
        stage.setTitle("JavaFX 8 app");
        stage.show();
    }
}

1 个答案:

答案 0 :(得分:2)

如果您不希望父级布局节点,可以将节点的managed属性设置为false

这是一张图片,显示了我在代码中使用以下行时的布局差异:

label2.setManaged(false);

enter image description here