下面的示例仅适用于文本,但一旦我向舞台添加了一个按钮,透明按钮就会变为非活动状态
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);
}
}我要找的是只使舞台透明,但显示的文本和按钮
发布于 2017-07-13 15:23:09
在这种情况下,您的Button不是问题。默认情况下,VBox是灰色背景,所以你的Stage是透明的,但VBox不是。你必须通过CSS文件、内联或代码来设置透明背景:
CSS:
.your-vbox {
-fx-background-color: transparent;
}内联:
box.setStyle("-fx-background-color: transparent;");代码:
box.setBackground(new Background(new BackgroundFill(Color.TRANSPARENT, CornerRadii.EMPTY, Insets.EMPTY)));https://stackoverflow.com/questions/45069900
复制相似问题