JavaFX Stage始终显示空场景

时间:2018-05-12 00:23:26

标签: java intellij-idea javafx scenebuilder

使用:

  • IntelliJ IDEA社区ide。
  • Java JDK 9.0.1
  • 场景构建器9.0.1

我总是空洞的场景。

这是fxml文件代码:

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.GridPane?>


<GridPane alignment="center" hgap="10" vgap="10" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/9.0.1" fx:controller="view.Controller">
   <children>
      <Button mnemonicParsing="false" text="Button" />
   </children>
</GridPane>

这是主要的类代码:

package view;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {

    @Override
    public void start(Stage primaryStage) throws Exception{
        Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
        primaryStage.setTitle("Hello World");
        primaryStage.setScene(new Scene(root, 600, 400));
        primaryStage.show();

    }


    public static void main(String[] args) {
        launch(args);
    }
}

0 个答案:

没有答案