1

我正在用 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 TreeViewMainPane extends AnchorPane并且myTabPane extends TabPane是自定义类。有趣的是,它只在启用 TreeList 的情况下运行良好,但每当我更改为时,都会TabPane出现myTabPane上述错误。它指向第 13 行,即<children>,这更加令人困惑。我猜测 myTabPane 是 MainPane 的子项存在问题,尽管它对 TreeList 工作正常。

如果您需要更多我的代码,我会准备好在这里为您发布。提前感谢您的回复。

4

1 回答 1

1

发现错误。它比我想象的还要愚蠢。Main.fxml 中的每个元素都应该以大写字母开头!!(正如 java 约定所推荐的那样)所以我将 myTabPane 更改为 TabManager,现在它可以工作了!

于 2012-09-19T10:40:10.913 回答