Is it possible to, in JavaFX, have a scene, stage, and control that are all transparent?
问题 I have a custom control which is 3 simple buttons. The control handles operations for the application to which it is tied, but it must reside on an external stage for reasons. The thing that is annoying about it is that between all buttons is a white background. I've tried all of the following to eliminate it: Init StageStyle to Transparent Declare Scene with a transparent background : new Scene(Node, X, Y, Color.TRANSPARENT); Declare Scene with a NULL background : new Scene(Node, X, Y, null)