【发布时间】: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: Feature: Openwebpage This is going to be a test to ensure that the selenium webdriver is able to open up the tests as intended. Scenario: Successfully opening Website. Given user navigates to Website Then navigate to Link-1 Homepage " wrapText="true" />
<TextArea layoutY="262.0" prefHeight="296.0" prefWidth="416.0" text="Test Case Validation: 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