我想在JavaFX中禁用相同“类型”的多个按钮。例如,我有多个用于不同操作的取消按钮,但是我想同时启用/禁用所有这些按钮,但是看来我无法在LinkedList中访问它们。
在下面的“最小且可复制”的示例中,当按下开始键时,它应启用(默认情况下在fxml中处于禁用状态)取消按钮,但不启用。
DemoController.java
public class DemoController {
@FXML
Button startBtn;
@FXML
Button cancelBtn1; // disabled by default
@FXML
Button cancelBtn2; // disabled by default
@FXML
Tab tab1;
public SDK sdk;
List<Node> cancelBtnGroup = new LinkedList<Node>();
public void initialize() {
cancelBtnGroup.add(cancelBtn1);
cancelBtnGroup.add(cancelBtn2);
startBtn.setOnAction(event -> {
tab1.setDisable(true);
startBtn.setDisable(true);
System.out.println("Disabling cancel buttons");
HashMap<String, String> test = new HashMap<String, String>();
test.put("disableCancel", "false");
sdk.onEvent(test);
});
initializeSDK();
}
public void initializeSDK() {
sdk = new SDK() {
@Override
public void onEvent(HashMap<String, String> e) {
if(e.containsKey("disableCancel")) {
for(Node btn : cancelBtnGroup) {
btn.setDisable(Boolean.parseBoolean(e.get("disableCancel")));
}
}
}
};
}
}
似乎我以某种方式覆盖了按钮,但是我看不到如何。我觉得我不了解某些功能的范围。我试图使代码尽可能简化和易读,因此,如果我遗漏了一些非常明显的内容,可能就是原因。 SDK对象不包含具有相同名称的对象,请确保不是我更改名称的问题。
答案 0 :(得分:3)
根据您发布的代码,我无法确定为什么它不起作用。但是,这是一个使用“禁用共同祖先”方法和FXML的最小示例:
App.java
package com.example;
import java.io.IOException;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class App extends Application {
@Override
public void start(Stage primaryStage) throws IOException {
var root = FXMLLoader.<Parent>load(getClass().getResource("/App.fxml"));
var scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.show();
}
}
App.fxml
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ToggleButton?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox xmlns="http://javafx.com/javafx/13" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.example.Controller" spacing="10" prefWidth="500" prefHeight="300"
alignment="CENTER">
<padding>
<Insets topRightBottomLeft="10"/>
</padding>
<ToggleButton fx:id="toggleBtn"/>
<HBox fx:id="container" alignment="CENTER" spacing="10">
<Button text="Button #1"/>
<Button text="Button #2"/>
<Button text="Button #3"/>
<Button text="Button #4"/>
</HBox>
</VBox>
Controller.java
package com.example;
import javafx.beans.binding.Bindings;
import javafx.fxml.FXML;
import javafx.scene.control.ToggleButton;
import javafx.scene.layout.HBox;
public class Controller {
@FXML private ToggleButton toggleBtn;
@FXML private HBox container;
@FXML
private void initialize() {
toggleBtn.textProperty().bind(
Bindings.when(toggleBtn.selectedProperty())
.then("Disable Buttons")
.otherwise("Enable Buttons")
);
container.disableProperty().bind(toggleBtn.selectedProperty().not());
}
}
注意:除了在代码中绑定容器的disable
属性,还可以使用以下命令来完成上述操作:
<!-- Everything else omitted for brevity -->
<HBox disable="${!toggleBtn.selected}">
当然,如果您使用的不是ToggleButton
,那么在FXML中实现绑定可能不可行。
答案 1 :(得分:1)
问题是我正在禁用该选项卡,该选项卡禁用了其中的所有按钮。我没有注意到它,因为我只有2个按钮,其中一个按钮无论如何都会被禁用,而另一个按钮则不会。所以在我看来,按钮只是没有响应。
解决方案
删除
tab1.setDisable(true)
我禁用了所有选项卡,因此在操作过程中用户无法切换选项卡,但是我忘记了,如果禁用当前选项卡,它也会禁用按钮。
我要感谢@Slaw的帮助并坚持我的态度。 (我以前有过太多次烦人的经历,所以我对将同样烦人的link发表1000次的答案很敏感。我知道我需要一个可重现的示例,但这并不总是容易做到的尤其是当您使用外部SDK和已经广泛的代码时,我试图使其最小化和可复制。