无论如何我可以创建一个透明的根元素?

时间:2012-10-08 14:56:07

标签: javafx-2

我想创建一个透明的边框。我尝试将背景颜色设置为透明,但它显示为白色。请告诉我是否有办法。

我试过的代码。

 BorderPane root=new BorderPane();
 root.setStyle("-fx-background-color:transparent");
 Scene scene=new Scene(root);
 stage.setScene(scene);
 stage.show();

谢谢...

1 个答案:

答案 0 :(得分:0)

尝试将舞台设置为透明:

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
import javafx.stage.Stage;
import javafx.stage.StageStyle;

public class TransparentStage extends Application {

    @Override
    public void start(Stage stage) {
        // important line
        stage.initStyle(StageStyle.TRANSPARENT);

        Text text = new Text("Transparent!");
        text.setFont(new Font(40));
        VBox box = new VBox();
        box.getChildren().add(text);
        final Scene scene = new Scene(box,300, 250);
        scene.setFill(null);
        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}