当前位置: 首页 > 知识库问答 >
问题:

JavaFX场景生成器崩溃

何高歌
2023-03-14

我对屏幕生成器有一些问题
对于某些fxml,它会在加载后发生creash。我尝试了很多次运行它,但它阻塞了,我必须终止这个进程。

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>

共有1个答案

司空默
2023-03-14

在IDE中打开文件之前,请先尝试以管理员身份打开SceneBuilder。不知道为什么会这样,但这让我振作了起来。

 类似资料:
  • 我希望此图表显示在场景生成器上。怎么可能。。??

  • 我正在用java开发一个聊天机器人项目,在GUI中我使用JavaFX、IDE eclipse和scene builder 8.4.1。 我在向文本区域添加背景图像时遇到问题。这是我所做的一个屏幕截图,它什么也没有显示(甚至没有错误)。 以下是场景生成器生成的fxml代码:

  • 关于如何自定义这样的值,有什么建议或想法吗?

  • 我正在使用场景构建器2.0,我想让一个按钮在默认情况下被禁用。这是很好的工作,但我想使它启用,如果两个布尔设置为真。在场景构建器中,如何向按钮的状态添加条件? 因此,下面的launchButton方法是单击按钮时将发生的情况。并且checkBox方法中的布尔值应该以某种方式连接到场景构建器。

  • 我运行wmii在linux和在想我自己,如果你可以运行javafx场景生成器从终端?

  • 每当我试图从Intellij用scenebuilder打开一个fxml文件时,它会给我以下信息: (我已经从设置放入了场景构建器的路径)