gpt4 book ai didi

javafx.stage.FileChooser

转载 作者:行者123 更新时间:2023-11-30 09:47:05 26 4
gpt4 key购买 nike

我应该如何将 javafx.stage.FileChooser 添加到 javafx gui 应用程序的场景中。

我做了以下

Group root = new Group(); 
Scene scene = new Scene(root,800,800,Color.BLANCHEDALMOND);
FileChooser fc = new FileChooser();
root.getChildren().add(fc);

但是我得到以下错误。

no suitable method found for add(javafx.stage.FileChooser)
method java.util.List.add(int,javafx.scene.Node) is not applicable
(actual and formal argument lists differ in length)
method java.util.List.add(javafx.scene.Node) is not applicable
(actual argument javafx.stage.FileChooser cannot be converted to javafx.scene.Node by method invocation conversion)

有人可以提供任何提示吗?

最佳答案

FileChooser 不是节点,因此您不能将它添加到组中。

使用:

fc.showOpenDialog(null);

fc.showSaveDialog(null);

参数为父窗口。如果我没记错的话,它可以为空。

关于javafx.stage.FileChooser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6855478/

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