【问题标题】:Cannot find controller in scenebuilder 2.0在scenebuilder 2.0中找不到控制器
【发布时间】:2017-07-07 17:01:42
【问题描述】:

只是想知道是否可以得到一些帮助,因为我目前正在使用 SceneBuilder 2.0 为我的软件构建 GUI。我遇到了一个问题,我无法将 FXML 文件与控制器链接,即使它们当前位于项目 Screenshot within Eclipse 的同一文件夹中。

对此问题的任何帮助将不胜感激。

谢谢!

编辑:请按要求在 Java Controller 类下方找到:

package rucmView;

import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.MenuItem;

public class GherkinController {

    @FXML
    private MenuItem exit;

    @FXML
    void ExitApplication(ActionEvent event) {

    }

}

也请按要求查找 FXML 类:

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Menu?>
<?import javafx.scene.control.MenuBar?>
<?import javafx.scene.control.MenuItem?>
<?import javafx.scene.control.SplitPane?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.RowConstraints?>

<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <SplitPane dividerPositions="0.29797979797979796" layoutY="31.0" prefHeight="570.0" prefWidth="600.0">
        <items>
          <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="403.0" prefWidth="174.0">
               <children>
                  <GridPane layoutX="1.0" layoutY="114.0" prefHeight="324.0" prefWidth="174.0">
                    <columnConstraints>
                      <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
                        <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="200.0" />
                        <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
                    </columnConstraints>
                    <rowConstraints>
                      <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
                      <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
                      <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
                        <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
                    </rowConstraints>
                     <children>
                        <Button alignment="CENTER" mnemonicParsing="false" prefHeight="31.0" prefWidth="137.0" text="Load Test Case" textAlignment="CENTER" GridPane.columnIndex="1" />
                        <Button mnemonicParsing="false" prefHeight="31.0" prefWidth="139.0" text="Create Defs" GridPane.columnIndex="1" GridPane.rowIndex="1" />
                        <Button mnemonicParsing="false" prefHeight="31.0" prefWidth="127.0" text="Exit Application" GridPane.columnIndex="1" GridPane.rowIndex="3" />
                        <Button mnemonicParsing="false" prefHeight="31.0" prefWidth="128.0" text="Seleniun View" GridPane.columnIndex="1" GridPane.rowIndex="2" />
                     </children>
                  </GridPane>
               </children></AnchorPane>
          <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="385.0" prefWidth="416.0">
               <children>
                  <TextArea prefHeight="251.0" prefWidth="416.0" text="Sample Gherkin Script:&#10;&#10;Feature: Openwebpage&#10;This is going to be a test to ensure that the selenium &#10;webdriver is able to open up the tests as intended.&#10;&#10;Scenario: Successfully opening Website.&#10;&#10;Given user navigates to Website&#10;&#10;Then navigate to Link-1 Homepage &#10;&#10;" wrapText="true" />
                  <TextArea layoutY="262.0" prefHeight="296.0" prefWidth="416.0" text="Test Case Validation:&#10;&#10;Checks to see if the Gherkin script is syntactically correct and valid." wrapText="true" />
               </children></AnchorPane>
        </items>
      </SplitPane>
      <MenuBar prefHeight="32.0" prefWidth="600.0">
        <menus>
          <Menu mnemonicParsing="false" text="File">
            <items>
              <MenuItem mnemonicParsing="false" text="Save Results" />
                  <MenuItem fx:id="exit" mnemonicParsing="false" onAction="#ExitApplication" text="Close" />
            </items>
          </Menu>
          <Menu mnemonicParsing="false" text="View">
            <items>
              <MenuItem mnemonicParsing="false" text="Selenium" />
                  <MenuItem mnemonicParsing="false" text="Gherkin/RUCM" />
            </items>
          </Menu>
            <Menu mnemonicParsing="false" text="Selenium">
               <items>
                  <MenuItem mnemonicParsing="false" text="Chrome" />
                  <MenuItem mnemonicParsing="false" text="FireFox" />
               </items>
            </Menu>
            <Menu mnemonicParsing="false" text="Help">
               <items>
                  <MenuItem mnemonicParsing="false" text="Guide" />
               </items>
            </Menu>
        </menus>
      </MenuBar>
   </children>
</AnchorPane>

【问题讨论】:

  • 能否请您发布 FXML 和 Controller 类声明?
  • 嗨,Bjørn,刚刚将它们添加到帖子中,控制器类是公共的

标签: java user-interface javafx javafx-8 scenebuilder


【解决方案1】:

你的控制器类和你的 fxml 文件应该在同一个包中。然后您可以在 SceneBuilder 中找到控制器类的选项。或者您可以在 fxml 文件中手动添加,例如:fx:controller="app.fxml.PropertiesDemoController"

前:

&lt;AnchorPane prefHeight="300.0" prefWidth="300.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="app.fxml.PropertiesDemoController"&gt;

【讨论】:

    【解决方案2】:
    • 确保控制器是public
    • fx:controller 需要控制器类的完整包路径。

    【讨论】:

    • 嗨,我也面临同样的问题。在fx:controller 中提到时,fxml 文件无法检测到我的控制器类我的控制器也是公共的
    猜你喜欢
    • 2017-03-11
    • 2016-05-30
    • 2021-08-17
    • 1970-01-01
    • 2012-04-18
    • 2016-05-14
    • 2021-08-17
    • 1970-01-01
    • 2014-06-05
    相关资源
    最近更新 更多