こんにちは私は自分の仕事のためにPINジェネレータを開発しています。私は全く新しいJavaですので、特にJavaFXを使用する場合には少し難しかったです。 私は、各ボタンの1つをクリックすると、プログラムに別の.fxmlファイルを表示させたいと思っています。私は、シーンの各ボタンのコントローラクラスを作成しているボタン上のJavaFX 8をクリックして他のシーンを表示
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 {
public static void main(String[] args) {
Application.launch(main.class, args);
}
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("/view/main.fxml"));
stage.setTitle("PIN-Generator");
stage.setScene(new Scene(root, 600, 400));
stage.show();
}
}
:
は、ここに私のコードです。
コントローラクラスコード:
package view;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
public class MainController {
@FXML
private Label dpmadirektpropingenerator;
@FXML
private Button unlockPinButton;
@FXML
private Button confirmationPinButton;
}
はここでそれが役立つかもしれない同じ質問についての答えです/ 27160951/javafx-open-another-fxml-in-the-another-window-with-button – boooom