我正在寻找
javafx FileChooser(在Kotlin中)的解决方案.我坚持这个,我无法通过root View,因为Window!是期待:
button("open some file") { setOnAction { val fileChooser = FileChooser(); val file = fileChooser.showOpenDialog(???) ... } }
在这种情况下我应该通过什么?
解决方法
According to the docs你可以为窗口传递一个null.
If the owner window for the file dialog is set,input to all windows in the dialog’s owner chain is blocked while the file dialog is being shown.
但是,由于您使用的是TornadoFX,因此您可能只想使用它提供的chooseFile和chooseDirectory函数.它们会为您提供有用的默认值,但是(因为它们只是默认值),您可以轻松地覆盖它们以根据您的需要定制功能.