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
上一篇: QT-设置QLineEdit无边框
下一篇: Vue(el、data、指令)
推荐阅读