我正在用 JavaFX 2.2 编写一个应用程序。目前我的 Main.fxml 中出现错误。:
Invalid property.
file:/path/to/jar/myProject.jar!/myProject/Main.fxml:13
这是 Main.fxml 的摘录:
<?import gui.main.elements.*?>
<MainPane fx:id="mainWindow" [...] xmlns:fx="http://javafx.com/fxml" fx:controller="myController">
<children>
<TextField fx:id="search" [...] promptText="Search..." />
<TreeList fx:id="itemViewer" />
<!--why does this not work!?-->
<myTabPane fx:id="tabPane" />
</children>
</MainPane>
TreeList extends TreeView
,MainPane extends AnchorPane
并且myTabPane extends TabPane
是自定义类。有趣的是,它只在启用 TreeList 的情况下运行良好,但每当我更改为时,都会TabPane
出现myTabPane
上述错误。它指向第 13 行,即<children>
,这更加令人困惑。我猜测 myTabPane 是 MainPane 的子项存在问题,尽管它对 TreeList 工作正常。
如果您需要更多我的代码,我会准备好在这里为您发布。提前感谢您的回复。