有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java定制primaryStage标题:以图标为中心

我正在用Java FX进行一个学校项目,我想在我的primarystage标题旁边添加一个图标,并将标题居中,就像图片中的一样。我在javadoc中查找了Stage,但只能找到setTitle()方法。以下是我想做的事情的链接:

enter image description here


共 (1) 个答案

  1. # 1 楼答案

    您可以将舞台设置为未装饰,将场景根设置为边框窗格,并创建自己的自定义顶栏

    BorderPane root = new BorderPane();
    root.setTop(new Pane(bb, label));
    Scene scene = new Scene(root, 400, 400);
    
    ButtonBar topBar = new ButtonBar(… insert buttons in here....);
    // eg: Button b = new Button("X); b.setOnAction(e->{stage.close();});
    root.setTop(topBar);
    
    stage.initStyle(StageStyle.UNDECORATED);