我是Javafx的新手,我正在研究javafx项目。我想最小化javafx窗口。 我使用primaryStage.initStyle(StageStyle.UNDECORATED); 。我还想在fxml中为imageview添加clickevent。
答案 0 :(得分:0)
我认为这对你有用......
imgview.setOnMouseClicked(newEventHandler<MouseEvent>(){
publicvoid handle(MouseEvent me){
primaryStage.setIconified(true);
}
});