2
我想做一個透明的場景和舞臺上的按鈕,但它似乎只適用於文本。 這裏是我的簡單的代碼透明的場景和舞臺不與javafx中的按鈕一起工作
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
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) {
stage.initStyle(StageStyle.TRANSPARENT);
Text text = new Text("Transparent!");
text.setFont(new Font(40));
//Button button = new Button("btn");
VBox box = new VBox();
box.getChildren().add(text);
//box.getChildren().add(button);
final Scene scene = new Scene(box,300, 300);
scene.setFill(Color.TRANSPARENT);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
,但如果我取消按鈕,結果將是here
它劑量不看任何透明以上,但它只是爲基底的。 透明是不是與按鈕一起工作? 和如果我應該添加一個按鈕呢? 謝謝。
真棒謝謝.. –