I know in java-fx to make the window transparent, you need to set the stage style as stage.initStyle(StageStyle.TRANSPARENT);
. However this will also remove any stage decorations so this does not solve my problem.
The reason I need this is because my application will need to use stage.setAlwaysOnTop();
at certain points, but this feature is not well supported on the target system (centOS). The application also requires stage.setIconnified();
, but this does not work if the stage is undecorated.
Any suggestions will be appreciated. Thanks