了JavaFx。按条件

时间:2016-10-04 11:23:42

标签: java css javafx

有TreeView,其中每个元素都实现了Viewable接口:

public interface Viewable {

    enum ViewStyle {

        NEW("-fx-background-color: b8faa7;"),
        NEW_PARENT("-fx-background-color: b8ebbb;"),
        LOCKED("-fx-background-color: adadad; "),
        HAS_NO_DATA("-fx-background-color: eb8d8d;");

        String style;

        ViewStyle(String style){
            this.style = style;
        }

        public String getStyle() {
            return style;
        }

    }

    ViewStyle getViewStyle();
    void setViewStyle(ViewStyle style);
    StringProperty styleProperty();

    String getTreeItemTitle();
    void setTreeItemTitle(String title);
    StringProperty titleProperty();

}

每个元素都有自己的.styleProperty(),并从ViewStyle.getStyle()获取值

此属性绑定每个TreeCell.styleProperty():

treeView.setCellFactory(new Callback<TreeView<Viewable>, TreeCell<Viewable>>() {
            @Override
            public TreeCell<Viewable> call(TreeView<Viewable> param) {
                return new TreeCell<Viewable>() {
                    @Override
                    protected void updateItem(Viewable item, boolean empty) {
                        textProperty().unbind();
                        styleProperty().unbind();
                        if (empty || item == null) {
                            setGraphic(null);
                            textProperty().set(null);
                            styleProperty().set(null);
                            return;
                        }
                        if (item != null) {
                            styleProperty().bind(item.styleProperty());
                            textProperty().bind(item.titleProperty());
                        }
                        super.updateItem(item, empty);
                    }
                };
            }
        });

问题是树细胞在选择中显示得很丑陋。也就是说,所选单元格的颜色不会改变。仅更改字母的颜色(按照默认主题),但不是很方便。因此,可能需要附加.css文件。同时,我不明白如何根据当前的ViewStyle更改单元格的样式(默认和选择时)。

1 个答案:

答案 0 :(得分:1)

您可以简单地将css属性更改为仅用于未选定单元格(-fx-control-inner-background)的属性:

enum ViewStyle {

    NEW("-fx-control-inner-background: b8faa7;"),
    NEW_PARENT("-fx-control-inner-background: b8ebbb;"),
    LOCKED("-fx-control-inner-background: adadad; "),
    HAS_NO_DATA("-fx-control-inner-background: eb8d8d;");

另请注意,您在updateItem方法的覆盖版本中执行了一些不应该执行的操作:并不总是调用super.updateItem。这可能导致filled / empty伪类未正确分配,item的{​​{1}}属性不包含最新TreeCell调用中的项目。你应该做这样的事情:

updateItem