JavaFX - 无法将ToggleButtons转换为ToggleGroup

时间:2016-09-27 08:13:20

标签: java javafx togglebutton

我有一个应用程序,用户应该只能选择一个按钮。

我的问题是,我无法将ToggleButton转换为ToggleGroup,这可以解决我的问题。

我使用if语句创建ToggleButton s。我将代码缩减为重要部分。 有什么帮助吗?

我的代码:

public SymbolTableCell() {
}

@FXML
public void initialize() {
    collectFonts();
    buildGridPaneAddButtons();
    listView.setOnMouseClicked(new EventHandler<MouseEvent>() {
        @Override
        public void handle(MouseEvent t) {
            buildGridPaneAddButtons();
@FXML
    public void buildGridPaneAddButtons() {
        gridPane.getChildren().clear();
        int numRows = 14;
        int numColumns = 14;
        for (int row = 0; row < numRows; row++) {
            RowConstraints rc = new RowConstraints();
            rc.setFillHeight(true);
            rc.setVgrow(Priority.ALWAYS);
            gridPane.getRowConstraints().add(rc);
        }
        for (int col = 0; col < numColumns; col++) {
            ColumnConstraints cc = new ColumnConstraints();
            cc.setFillWidth(true);
            cc.setHgrow(Priority.ALWAYS);
            gridPane.getColumnConstraints().add(cc);
        }

        String selectedFamily = listView.getSelectionModel().getSelectedItem();
        if (selectedFamily != null) {
            System.out.println("selected Font: '" + selectedFamily + "'");
            for (int i = 0; i < 196; i++) {
                Font selectedFont = Font.font(selectedFamily, 18.0);
                Character character = new Character((char) (i));
                java.awt.Font awtFont = new java.awt.Font(selectedFamily, 0, 40);

                if (awtFont.canDisplay(character.charValue())  {
                    ToggleButton buttonForSymbols = createButton("" + character);
                    buttonForSymbols.setFont(selectedFont);
                    buttonForSymbols.setAlignment(Pos.CENTER);

// Here I try to get the ToggleButtons into the Group.
                    ToggleGroup groupForToggleButtons = new ToggleGroup();
                    buttonForSymbols.setToggleGroup(groupForToggleButtons);

                    HBox symbolHBox = new HBox();
                    symbolHBox.getChildren().add(buttonForSymbols);

                    Label symbolLabel = new Label();
                    symbolLabel.setText("" + i);

                    Separator symbolSeparator = new Separator();

                    BorderPane symbolBorderPane = new BorderPane();
                    symbolBorderPane.setTop(symbolHBox);
                    symbolBorderPane.setCenter(symbolSeparator);
                    symbolBorderPane.setBottom(symbolLabel);
                    symbolLabel.setAlignment(Pos.CENTER);
                    symbolBorderPane.setAlignment(symbolLabel, Pos.CENTER);

                    // when ToggleButton selected, set new Style of BorderPane
                    symbolBorderPane.styleProperty()
                            .bind(Bindings.when(buttonForSymbols.selectedProperty())
                                    .then("-fx-border-color: red; -fx-border-width: 1.5;")
                                    .otherwise("-fx-border-color: black; -fx-border-width: 1;"));                       
                    gridPane.add(symbolBorderPane, i % numRows, i / numColumns);

                }
            }
        }
    }

    // ToggleButton to use .then .otherwise style properties
    private ToggleButton createButton(String text) {
        ToggleButton buttonPanelForSymbols = new ToggleButton(text);
        buttonPanelForSymbols.setMaxSize(Double.MAX_VALUE, Double.MAX_VALUE);
        buttonPanelForSymbols.setOnAction(e -> System.out.println("ok"));
        buttonPanelForSymbols.setStyle(
                "-fx-border-color: transparent; -fx-border-width: 0; -fx-background-radius: 0; -fx-background-color: transparent;");
        return buttonPanelForSymbols;
    }

1 个答案:

答案 0 :(得分:3)

在这一行:

ToggleGroup groupForToggleButtons = new ToggleGroup();

当您在生成按钮的ToggleGroup内执行此命令时,您为每个ToggleButton创建了一个新的for loop

在循环外创建ToggleGroup

ToggleGroup groupForToggleButtons = new ToggleGroup();
for (int i = 0; i < 196; i++) {
    ...
}

然后在循环内部为每个ToggleGroup使用此ToggleButton实例(删除循环内的ToggleGroup初始化)。

注意:您甚至可以将其封装在createButton方法中:

private ToggleButton createButton(String text, ToggleGroup group) {
    ToggleButton buttonPanelForSymbols = new ToggleButton(text);
    // Current code here
    buttonPanelForSymbols.setToggleGroup(group)
    return buttonPanelForSymbols;
}

然后在循环中:

ToggleButton buttonForSymbols = createButton("" + character, groupForToggleButtons);

同时删除循环中相关的每个ToggleGroup