1

我有这个在 SceneBuilder Preview 中完美运行的 FXML,并且在 NetBeans JavaFX 示例应用程序上的行为完全不同(因此没有任何额外的东西可以破坏它的行为)。(见截图

我需要 2 个 TitledPanes 来根据窗口自动调整大小(一半和一半)(因为它在 SceneBuilder 预览中工作)。

<AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefWidth="798.0" xmlns:fx="http://javafx.com/fxml" fx:controller="javafxapplication2.Sample">
  <children>
    <VBox id="vBox1" prefWidth="770.0" spacing="25.0" AnchorPane.bottomAnchor="25.0" AnchorPane.leftAnchor="25.0" AnchorPane.rightAnchor="25.0" AnchorPane.topAnchor="25.0">
      <children>
        <TitledPane id="titledPane1" fx:id="test" prefWidth="748.0" text="Admin" VBox.vgrow="ALWAYS">
          <content>
            <AnchorPane id="Content" minHeight="0.0" minWidth="0.0">
              <children>
                <TableView id="tableView1" prefWidth="718.0" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="14.0" AnchorPane.topAnchor="14.0" />
              </children>
            </AnchorPane>
          </content>
        </TitledPane>
        <TitledPane id="titledPane2" prefWidth="748.0" text="Resellers" VBox.vgrow="ALWAYS">
          <content>
            <AnchorPane id="Content" minWidth="0.0" prefWidth="744.0">
              <children>
                <TableView id="tableView2" prefWidth="200.0" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="14.0" AnchorPane.topAnchor="14.0" />
              </children>
            </AnchorPane>
          </content>
        </TitledPane>
      </children>
    </VBox>
  </children>
</AnchorPane>
4

1 回答 1

4

SceneBuilder Preview 和 NetBeans JavaFX 示例应用程序使用不同版本的 JavaFX。可能 SceneBuilder 使用的是 2.1 和 NetBeans 2.0.2。通过升级您机器的 Java 版本或将新的 jfxrt.jar 版本导入您的类路径(即导入 netbeans 应用程序库)来升级应用程序的版本。

于 2012-05-06T21:55:01.363 回答