我需要将绘制的矩形鼠标透明,以便查看桌面。 以下代码绘制了我的矩形。我应该添加什么来获得它? 谢谢你的帮助
public void start(Stage primaryStage) {
Group group = new Group();
Rectangle rect = new Rectangle(20,20,200,200);
rect.setArcHeight(15);
rect.setArcWidth(15);
rect.setStroke(Color.BLACK);
group.getChildren().add(rect);
Scene scene = new Scene(group, 300, 200);
primaryStage.setScene(scene);
primaryStage.show();
}
答案 0 :(得分:3)
如果您只想让矩形的内部透明,那么您需要的只是
rect.setFill(Color.TRANSPARENT);
但我不太确定这是不是你的意思。
答案 1 :(得分:2)
由于JavaFX中的屏幕图形是分层结构,要显示桌面,您还需要使Stage
和Scene
透明,并使用shape&#34;算法&#34;:< / p>
@Override
public void start(Stage stage) {
Group group = new Group();
Rectangle rect = new Rectangle(0, 0, 350, 300);
Rectangle clip = new Rectangle(20, 20, 200, 200);
clip.setArcHeight(15);
clip.setArcWidth(15);
Shape shape = Shape.subtract(rect, clip);
shape.setFill(Color.GRAY);
group.getChildren().add(shape);
Scene scene = new Scene(group);
scene.setFill(Color.TRANSPARENT);
stage.initStyle(StageStyle.TRANSPARENT);
stage.setScene(scene);
stage.show();
}
稍后您可以向窗格/组添加可拖动功能。
答案 2 :(得分:0)
如果我理解正确,因为我没有将这个鼠标部分变为“绘制的矩形鼠标透明” - 你的矩形应该是透明的吗?
您必须更改矩形的不透明度: 。rect.opacityProperty()组(0.5);