我有一个按钮,您可以单击它来执行某些操作,现在我想要相同的操作,但是当按下按钮上的输入按钮时(使用Tab键到达那里并按下回车键)。这主要是为了创建免费鼠标。下面是按钮单击的代码。 BlueJK中的这个Java和场景构建器中的场景但是我没有在场景构建器中使用任何代码。如果有人能给我很多指导和帮助,那将非常感激。
@FXML void newuserbackbuttonClicked()
{
FXMLLoader loader = new FXMLLoader(Application.class.getResource("MainScene.fxml"));
try
{
Stage stage2 = new Stage();
stage2.setTitle("Main Scene");
stage2.setScene(new Scene(loader.load()));
stage2.show();
MainScene controller2 = loader.getController();
controller2.prepareStageEvents(stage2);
}
catch (Exception ex)
{
System.out.println(ex.getMessage());
}
stage.close();
}
答案 0 :(得分:0)
缺少重要部分,因为您没有显示fxml。您为控制器方法分配的*方法是onAction。我猜你现在使用onMouseClicked。