我有一个切换按钮,我需要"点击"当我双击另一个节点时。 我知道我设置的事件正在工作:当我双击控件时,我所拥有的事件应该是"点击"触发按钮会触发,但我执行的操作无效:
(ActionEvent E) -> {
Launcher.this.ButtonsForm.btnOptions.setSelected(
!Launcher.this.ButtonsForm.btnOptions.isSelected()
); Launcher.this.ButtonsForm.btnOptions.fire(
); E.consume();
}
切换按钮有一个与其onAction
相关联的事件处理程序,当按钮打开时,它应该显示一个表单,然后当表单关闭时,按钮会返回到未选择状态。
实现这个目标的正确方法是什么?
答案 0 :(得分:0)
我用这个测试ToggleButton:
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ToggleButton;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class NewFXMain extends Application {
@Override
public void start(Stage primaryStage) {
ToggleButton btn = new ToggleButton();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
Button btt=new Button();
btt.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
// btn.setSelected(true);
// btn.arm();
btn.fire();
// btn.setSelected(true);
event.consume();
}
});
VBox root = new VBox();
root.getChildren().add(btn);
root.getChildren().add(btt);
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
根据@James_D进行此测试后,如果没有布防,最终只能使用fire()函数和arm()。
(ActionEvent E) -> {
Launcher.this.ButtonsForm.btnOptions.fire();
E.consume();
}
我希望能帮到你