gpt4 book ai didi

java - javafx 应用程序中未显示按钮

转载 作者:行者123 更新时间:2023-12-01 19:46:50 25 4
gpt4 key购买 nike

我在sample.fxml中制作的按钮在编译后没有显示,我使用scenebuilder创建了它们。我也尝试再次编译进行重建。在尝试了一切之后,我变得无助,但问题仍然是他们。一点帮助就会很好。

main.java

package sample;

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 {
try {
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
Scene scene = new Scene(root, 300, 275);
primaryStage.setTitle("Hello World");

primaryStage.show();
} catch (Exception e)
{
e.printStackTrace();
}
}

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

Controller .java

package sample;

import javafx.event.ActionEvent;

import java.util.Random;

public class Controller {

public void generateRandom(ActionEvent event)
{
Random rand = new Random();
int number = rand.nextInt(50)+1;
System.out.println(Integer.toString(number));
}
}

样本.fxml

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

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>

<AnchorPane prefHeight="476.0" prefWidth="497.0" xmlns="http://javafx.com/javafx/8.0.121" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
<children>
<Button fx:id="clickme" layoutX="192.0" layoutY="299.0" mnemonicParsing="false" onAction="#generateRandom" prefHeight="52.0" prefWidth="93.0" text="Click me" />
<Label layoutX="155.0" layoutY="152.0" prefHeight="71.0" prefWidth="166.0" />
</children>
</AnchorPane>

最佳答案

您在 Main 中创建了一个新的Scene,但从未在舞台上设置该场景。

创建标题后添加primaryStage.setScene(scene);以将场景添加到舞台:

@Override
public void start(Stage primaryStage) throws Exception {
try {
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
Scene scene = new Scene(root, 300, 275);
primaryStage.setScene(scene); // Add this line
primaryStage.setTitle("Hello World");
primaryStage.show();
} catch (Exception e) {
e.printStackTrace();
}
}

关于java - javafx 应用程序中未显示按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52907342/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com