在JavaFX中将节点添加到TreeItem

时间:2014-07-24 02:33:09

标签: javafx

我有一个TreeItem<String>对象。

enter image description here

我想在其中放一个按钮。

Button button = new Button("Hello!");
root.setGraphic(button);  // root is the TreeItem object

enter image description here

不错,但我想自由定位这个按钮。我想要&#34; Root&#34;。

的权利

更改按钮的布局X似乎没有做任何事情。那怎么办呢?

2 个答案:

答案 0 :(得分:5)

您可以使用Label和Button初始化创建自定义类扩展HBox类并包含构造函数声明。接下来,您可以使用此类指定TreeView<T>TreeItem<T>泛型类型。这种简单的HBox自定义类的示例如下所示:

import javafx.geometry.Pos;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;

public class CustomItem extends HBox {

    private Label boxText;
    private Button boxButton;

    CustomItem(Label txt) {
        super();

        this.boxText = txt;

        this.getChildren().add(boxText);
        this.setAlignment(Pos.CENTER_LEFT);
    }

    CustomItem(Label txt, Button bt) {
        super(5);

        this.boxText = txt;
        this.boxButton = bt;

        this.getChildren().addAll(boxText, boxButton);
        this.setAlignment(Pos.CENTER_LEFT);
    }
}

在实践中使用它可能如下所示:

import javafx.application.Application;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TreeItem;
import javafx.scene.control.TreeView;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;

public class TreeViewDemo extends Application {

    public Parent createContent() {

        /* layout */
        BorderPane layout = new BorderPane();

        /* layout -> center */

        /* initialize TreeView<CustomItem> object */
        TreeView<CustomItem> tree = new TreeView<CustomItem>();

        /* initialize tree root item */
        TreeItem<CustomItem> root = new TreeItem<CustomItem>(new CustomItem(new Label("Root")));

        /* initialize TreeItem<CustomItem> as container for CustomItem object */
        TreeItem<CustomItem> node = new TreeItem<CustomItem>(new CustomItem(new Label("Node 1"), new Button("Button 1")));

        /* add node to root */
        root.getChildren().add(node);

        /* set tree root */
        tree.setRoot(root);

        /* add items to the layout */
        layout.setCenter(tree);
        return layout;
    }

    @Override
    public void start(Stage stage) throws Exception {
        stage.setScene(new Scene(createContent()));
        stage.setWidth(200);
        stage.setHeight(200);
        stage.show();
    }

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

效果将如下所示:

enter image description here

答案 1 :(得分:0)

快速方法是不设置树项的valueProperty,并将所需的值作为文本(或标签)添加到graphicProperty

root.setValue("");
Text text = new Text("Root");
Button button = new Button("Hello!");
HBox hbox = new HBox(5);
hbox.getChildren().addAll(text, button);
root.setGraphic(vbox);

另一方面,将查找树项的子节点并相应地更改其属性。

编辑说明:使用HBox代替VBox更合适。我很着急:)