欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JavaFX窗体设置无边框

程序员文章站 2022-07-04 20:05:30
...

实际的设置方式一行代码就可以搞定:

public void start(Stage stage) throws Exception {
        longStart();
        Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
         
        Scene scene = new Scene(root);
         
        stage.setScene(scene);
        stage.initStyle(StageStyle.UNDECORATED);//设定窗口无边框
        stage.show();
    }

 

转载于:https://my.oschina.net/sefx/blog/686518