我想拥有一个没有出现在任务栏中并且也没有窗户装饰的JavaFX Application,我如何实现这一点?

编辑:

我已经试过了:

Is it possible to have a transparent utility stage in javafx?

它可以正常工作,但是图形相当糟糕,所以我认为这不是一个好方法。不良的图形是由于JFXPanel内部的抗锯齿功能不正常引起的.JFXPanel似乎有问题。

最佳答案

您可以通过以下方式装饰(主)stage

 StageStyle.DECORATED - a stage with a solid white background and platform decorations.
 StageStyle.UNDECORATED - a stage with a solid white background and no decorations.
 StageStyle.TRANSPARENT - a stage with a transparent background and no decorations.
 StageStyle.UTILITY - a stage with a solid white background and minimal platform decorations.


要获得结果,您需要使用方法initStyle(StageStyle style)

10-05 21:30