如何在FXML中创建路径对象?

时间:2012-03-15 01:41:32

标签: javafx-2 fxml

在javafx2中我试图在fxml中创建一个对象。我想能够从控制器中引用它吗?

<BorderPane>
            <center>
                <Path id="ad"/>
            </center>
</BorderPane>

不工作?有什么想法吗?

2 个答案:

答案 0 :(得分:1)

需要在fxml文件中导入路径。

<?import javafx.scene.shape.Path?>

答案 1 :(得分:1)

还需要在开始标记中添加fx:id。 e.g:

<BorderPane>
            <center>
                <Path id="ad" fx:id="ad1"/>
            </center>
</BorderPane>