Javafx场景构建器崩溃



我对屏幕构建器有一些问题。
对于某些FXML,加载后它会creas。我尝试多次运行它,但它阻止了它,我必须杀死进程。

FXML还可以,内容在我的应用程序中正确显示。这是我的FXML导致场景构建器崩溃的示例。

<?xml version="1.0" encoding="UTF-8"?>
<?import com.jfoenix.controls.JFXTabPane?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import java.lang.String?>
<?import java.net.URL?>
<AnchorPane xmlns:fx="http://javafx.com/fxml/1" id="mainApplicationWindow" fx:id="mainApplicationWindow"
            styleClass="mainAnchorPane, gt-screen" xmlns="http://javafx.com/javafx/8.0.112-ea"
            fx:controller="com.genealogytree.client.desktop.controllers.implementation.PaneMainApplicationWindowController">
    <stylesheets>
        <URL value="@/layout/style/gentree.css"/>
    </stylesheets>
    <children>
        <SplitPane dividerPositions="0.2809364548494983" layoutX="139.0" layoutY="78.0" orientation="VERTICAL"
                   prefHeight="200.0" prefWidth="160.0" styleClass="gt-splitpane" AnchorPane.bottomAnchor="0.0"
                   AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
            <items>
                <AnchorPane maxHeight="220.0" minHeight="220.0" prefHeight="220.0">
                    <children>
                        <JFXTabPane fx:id="gtMainTabPane" AnchorPane.bottomAnchor="10" AnchorPane.leftAnchor="20"
                                    AnchorPane.rightAnchor="20" AnchorPane.topAnchor="10">
                            <tabs>
                            </tabs>
                        </JFXTabPane>
                    </children>
                </AnchorPane>
                <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="100.0" prefWidth="160.0">
                    <children>
                        <SplitPane dividerPositions="0.22690763052208834" layoutX="55.0" layoutY="46.0"
                                   prefHeight="160.0" prefWidth="200.0" styleClass="gt-splitpane"
                                   AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0"
                                   AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
                            <items>
                                <AnchorPane id="splitPaneHorizontal" maxWidth="250.0" minWidth="250.0"
                                            prefWidth="250.0">
                                    <children>
                                        <TableView fx:id="gtFamilyMemberTable" layoutX="20.0" layoutY="12.0"
                                                   onMouseClicked="#showInfoMember" prefHeight="200.0" prefWidth="200.0"
                                                   AnchorPane.bottomAnchor="50.0" AnchorPane.leftAnchor="10.0"
                                                   AnchorPane.rightAnchor="10.0" AnchorPane.topAnchor="5.0">
                                            <columns>
                                                <TableColumn fx:id="simNameColumn" maxWidth="110.0" minWidth="110.0"
                                                             prefWidth="-1.0" text="%simName"/>
                                                <TableColumn fx:id="simSurnameColumn" maxWidth="110.0" minWidth="110.0"
                                                             prefWidth="-1.0" text="%simSurname"/>
                                            </columns>
                                            <styleClass>
                                                <String fx:value="firstTypeTable"/>
                                                <String fx:value="tableMembersAndRelations"/>
                                            </styleClass>
                                        </TableView>
                                        <TableView id="gtFamilyRelationTable" fx:id="gtFamilyRelationTable"
                                                   layoutX="20.0" layoutY="12.0" onMouseClicked="#showInfoRelation"
                                                   prefHeight="200.0" prefWidth="200.0" AnchorPane.bottomAnchor="50.0"
                                                   AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="10.0"
                                                   AnchorPane.topAnchor="5.0">
                                            <columns>
                                                <TableColumn fx:id="relationSimLeftColumn" maxWidth="85.0"
                                                             minWidth="85.0" prefWidth="-1.0" text="%relation_sim"/>
                                                <TableColumn fx:id="relationTypeColumn" maxWidth="50.0" minWidth="50.0"
                                                             prefWidth="-1.0" text="%relation_type"/>
                                                <TableColumn fx:id="relationSimRightColumn" maxWidth="85.0"
                                                             minWidth="85.0" prefWidth="-1.0" text="%relation_sim"/>
                                            </columns>
                                            <styleClass>
                                                <String fx:value="firstTypeTable"/>
                                                <String fx:value="tableMembersAndRelations"/>
                                            </styleClass>
                                        </TableView>
                                        <AnchorPane id="anchorToogleButtons" prefHeight="25.0"
                                                    AnchorPane.bottomAnchor="10.0" AnchorPane.leftAnchor="10"
                                                    AnchorPane.rightAnchor="10.0">
                                            <ToggleButton id="buttonShowMemberTable" fx:id="buttonShowMemberTable"
                                                          layoutX="23.0" mnemonicParsing="false"
                                                          prefWidth="114.0" styleClass="toogleButtonShowTable"
                                                          text="Members" AnchorPane.bottomAnchor="0.0"
                                                          AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="0.0"/>
                                            <ToggleButton id="buttonShowRelationTable" fx:id="buttonShowRelationTable"
                                                          layoutX="125.0" layoutY="12.0" mnemonicParsing="false"
                                                          prefWidth="114.0"
                                                          styleClass="toogleButtonShowTable" text="Relations"
                                                          AnchorPane.bottomAnchor="0.0" AnchorPane.rightAnchor="0.0"
                                                          AnchorPane.topAnchor="0.0"/>
                                        </AnchorPane>
                                    </children>
                                </AnchorPane>
                                <AnchorPane fx:id="workAnchorPane">
                                    <children>
                                        <AnchorPane fx:id="workAnchorPaneContent" AnchorPane.bottomAnchor="50.0"
                                                    AnchorPane.leftAnchor="10.0" AnchorPane.rightAnchor="20.0"
                                                    AnchorPane.topAnchor="5.0">
                                        </AnchorPane>
                                    </children>
                                </AnchorPane>
                            </items>
                        </SplitPane>
                    </children>
                </AnchorPane>
            </items>
        </SplitPane>
    </children>
</AnchorPane>

在打开IDE中的文件之前,请先尝试以管理员的身份打开SceneBuilder。不知道为什么有效,但它使我开始运行。

最新更新