gpt4 book ai didi

JavaFX 警报不会在新窗口中打开,而是在新选项卡中打开

转载 作者:行者123 更新时间:2023-12-02 03:27:47 25 4
gpt4 key购买 nike

我正在使用 JavaFX 8 和场景生成器,并且我正在尝试创建一个警报弹出窗口。请参阅下面的代码:

更新:包括我拥有的所有代码(不包括一些个人标识符)。

public class MainViewController {

@FXML
private void handleQuitButtonAction(ActionEvent event) {
System.exit(0);
}

@FXML
private void handleImportButtonAction(ActionEvent event) {
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Select the file to import");
File file = fileChooser.showOpenDialog(new Stage());
Alert alert;
if (FileAccess.importFile(file)) {
alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Success!");
alert.setHeaderText("Congrats!");
alert.setContentText("Successfully imported data from the chosen file!");
} else {
alert = new Alert(AlertType.ERROR);
alert.setTitle("Error!");
alert.setHeaderText("Sorry...");
alert.setContentText("Something wrong with the import, please try again.");
}
alert.showAndWait();

// Refresh Scroll List
}

@FXML
private void handleExportButtonAction(ActionEvent event) {
}
}

public class MainApp extends Application {

private Stage primaryStage;
private BorderPane mainView;

@Override
public void start(Stage primaryStage) {
this.primaryStage = primaryStage;
this.primaryStage.setTitle("Main System");
showMainView();
}

private void showMainView() {
try {
// Load Main View from FXML file.
FXMLLoader loader = new FXMLLoader();
loader.setLocation(MainApp.class.getResource("view/MainView.fxml"));
mainView = (BorderPane) loader.load();

// Show the scene containing the root layout.
Scene scene = new Scene(mainView);
primaryStage.setScene(scene);
primaryStage.show();
} catch (IOException e) {
e.printStackTrace();
}
}

public Stage getPrimaryStage() {
return primaryStage;
}

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

public class FileAccess {

public static boolean importFile(File file) {
return false;
}
}

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

<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ButtonBar?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.effect.DropShadow?>
<?import javafx.scene.layout.BorderPane?>

<BorderPane prefHeight="600.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="view.MainViewController">
<center>
<ScrollPane prefWidth="800.0" BorderPane.alignment="CENTER" />
</center>
<top>
<ButtonBar prefHeight="40.0" prefWidth="200.0" BorderPane.alignment="CENTER">
<buttons>
<Button focusTraversable="false" mnemonicParsing="false" onAction="#handleImportButtonAction" text="Import" ButtonBar.buttonData="LEFT" />
<Button focusTraversable="false" mnemonicParsing="false" onAction="#handleExportButtonAction" text="Export" ButtonBar.buttonData="LEFT" />
<Button focusTraversable="false" mnemonicParsing="false" onAction="#handleQuitButtonAction" text="Quit Program" ButtonBar.buttonData="RIGHT" />
</buttons>
<effect>
<DropShadow />
</effect>
<BorderPane.margin>
<Insets left="10.0" right="10.0" />
</BorderPane.margin>
</ButtonBar>
</top>
</BorderPane>

但是,它不是打开一个新窗口,而是在一个新选项卡中打开警报(我没有与选项卡设置相关的任何内容),请参见下面的屏幕截图:

enter image description here

它的尺寸甚至不正确...

我使用的是 macOS Mojave。

谢谢!

最佳答案

已解决:

这是操作系统设置问题。在系统偏好设置Dock中,我将打开文档时首选选项卡设置为始终,之后将其设置为<强>手动,它工作正常。

感谢大家的帮助。

关于JavaFX 警报不会在新窗口中打开,而是在新选项卡中打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52713897/

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