In my JavaFX application, I have a stage that is set to be undecorated using
stage.initStyle(StageStyle.UNDECORATED);
. This means it has no icons for minimize, maximize, and close buttons. I need to create these buttons myself because I want to add more Buttons on the same line as them. However, since the Stage is undecorated, I also need resizable borders for my window. Are there any standard methods to achieve this without having to create a custom BorderPane and handle mouse dragging manually?