如何创建带有可编辑标签的箭头(用于连接两个节点)?

时间:2016-01-11 09:10:37

标签: javafx arrows

我在github上使用此项目中的类Arrowhttps://github.com/tesis-dynaware/graph-editor

    public Arrow() {

        line.getStyleClass().add(STYLE_CLASS_LINE);
        head.getStyleClass().add(STYLE_CLASS_HEAD);

      */
    public Arrow() {

        line.getStyleClass().add(STYLE_CLASS_LINE);
        head.getStyleClass().add(STYLE_CLASS_HEAD);
        arrowText.getStyleClass().add(textArrow);  

        Group n=new Group(hb,line,head);

        hb.getChildren().add(t);

    }
}

我想用可编辑的标签创建Arrow。但我不知道如何处理。你能帮帮我吗?

0 个答案:

没有答案