在JavaFX中,可以通过以下方式确保按钮上的Fxml方法在listener之前被调用:
onAction="#handleButtonAction"
public void handleButtonAction(ActionEvent event)
示例代码如下:
FXML文件(sample.fxml):
<Button text="Click Me" onAction="#handleButtonAction" />
Controller类(SampleController.java):
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
public class SampleController {
@FXML
private Button button;
@FXML
public void handleButtonAction(ActionEvent event) {
// 在listener之前被调用的逻辑
System.out.println("Button action handled!");
// 调用listener
button.setOnAction(e -> {
// listener中的逻辑
System.out.println("Button clicked!");
});
}
}
在上述示例中,当按钮被点击时,首先会执行handleButtonAction
方法中的逻辑,然后再调用按钮的listener中的逻辑。这样可以确保按钮上的Fxml方法在listener之前被调用。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云