【发布时间】:2017-12-17 14:28:18
【问题描述】:
下面的例子只适用于文本,但是一旦我在舞台上添加了一个按钮,透明就变得不活跃了
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
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 Main extends Application {
@Override
public void start(Stage stage) {
stage.initStyle(StageStyle.TRANSPARENT);
Text text = new Text("!");
text.setFont(new Font(40));
VBox box = new VBox();
Button btn = new Button("Test transparent");
box.getChildren().addAll(text, btn);
//if I removed the btn, transparent works as expected.
final Scene scene = new Scene(box,300, 250);
scene.setFill(null);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
我正在寻找的只是使舞台透明但显示文本和按钮
【问题讨论】:
标签: javafx transparent