Java FX按钮突出显示

时间:2018-11-25 04:07:33

标签: java javafx javafx-8 javafx-2

enter image description here

我想做的是,请参阅所附的屏幕截图。一旦我在按钮1-4之间单击,它应该以红色突出显示,并且 保持突出显示状态,直到我在按钮1和按钮4之间选择任何其他按钮,然后突出显示所选按钮 突出显示。我可以通过集中属性来做到这一点。但是我的场景中还有其他按钮,例如按钮5,6和7。一旦我单击任何其他按钮或单击另一个控件 焦点和红色消失。但是我希望单击的按钮保持突出显示状态,或者要显示一个标志,以显示选择了哪个按钮(在按钮1和按钮4之间)。

1 个答案:

答案 0 :(得分:1)

我建议为此使用ToggleGroupToggleButtonToggleGroup允许您的用户一次只能选择一个按钮。选择按钮后,即可设置所需的样式。

在下面的示例程序中,我在组中有6个ToggleButtons,并且在任何给定时间只能选择一个。所选按钮将具有红色背景(突出显示)。您创建的任何没有这种样式的按钮都不会受到影响。

下面的代码也被注释:

import javafx.application.Application;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Toggle;
import javafx.scene.control.ToggleButton;
import javafx.scene.control.ToggleGroup;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class ButtonHighlights extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) {

        // Simple interface
        VBox root = new VBox(5);
        root.setPadding(new Insets(10));
        root.setAlignment(Pos.CENTER);

        // Create a ToggleGroup to hold the list of ToggleButtons. This will allow us to allow the selection of only one
        // ToggleButton at a time
        ToggleGroup toggleGroup = new ToggleGroup();

        // Create our 6 ToggleButtons. For this sample, I will use a for loop to add them to the ToggleGroup. This is
        // not necessary for the main functionality to work, but is used here to save time and space
        for (int i = 0; i < 6; i++) {
            ToggleButton button = new ToggleButton("Button #" + i);

            // If you want different styling for the button when it's selected other than the default, you can either
            // use an external CSS stylesheet, or apply the style in a listener like this:
            button.selectedProperty().addListener((observable, oldValue, newValue) -> {

                // If selected, color the background red
                if (newValue) {
                    button.setStyle(
                            "-fx-background-color: red;" + 
                            "-fx-text-fill: white");
                } else {
                    button.setStyle(null);
                }
            });

            // Add the button to our ToggleGroup
            toggleGroup.getToggles().add(button);
        }

        // Add all our buttons to the scene
        for (Toggle button :
                toggleGroup.getToggles()) {
            root.getChildren().add((ToggleButton) button);
        }

        // Show the Stage
        primaryStage.setWidth(300);
        primaryStage.setHeight(300);
        primaryStage.setScene(new Scene(root));
        primaryStage.show();
    }
}
  

结果:

screenshot