I\'m trying to create a stage that doesn\'t appear on the Windows task bar and is undecorated (no borders and no close/minimize/maximize buttons). My end goal is to create a
As far as I know, JavaFX and Swing are interoperable and swing supports this feature. So if you can use Swing, integrate something like this into your application:
class MyFrame extends JFrame {
// ...
MyFrame() {
setUndecorated(true);
setType(Type.UTILITY);
}
// ...
}
I haven't tried this but other SO questions like this will probably help you on how to use Swing in JavaFX.