请问我想知道如何更改java fxml组合框的selectionmodel,以便它可以允许多个选择。任何贡献将不胜感谢。
答案 0 :(得分:13)
您可以尝试ControlsFX CheckComboBox(ControlsFX是JavaFX的第三方控件库。)
刚刚从CheckComboBox javadoc:
复制一个简单的UI控件,可以在类似ComboBox的控件中选择零个或多个项目。每个行项都显示一个CheckBox,并且可以通过检查模型查询每一行的状态。
// create the data to show in the CheckComboBox final ObservableList<String> strings = FXCollections.observableArrayList(); for (int i = 0; i <= 100; i++) { strings.add("Item " + i); } // Create the CheckComboBox with the data final CheckComboBox<String> checkComboBox = new CheckComboBox<String>(strings); // and listen to the relevant events (e.g. when the selected indices or // selected items change). checkComboBox.getCheckModel().getSelectedItems().addListener(new ListChangeListener<String>() { public void onChanged(ListChangeListener.Change<? extends String> c) { System.out.println(checkComboBox.getCheckModel().getSelectedItems()); } }); }
注意:JavaFX的内置组合框控件上的JavaFX controls developer lead comments:
您可以将所需的任何选择模型实例放入ComboBox,但只支持单个选择。我们之所以这样做是因为如果不对用户体验和用户体验做出重大改变,多项选择就没有意义,我们认为未来可以开发一个单独的控件来更好地支持这个用例
来自ControlsFX的CheckComboBox控件是单独控制的。
答案 1 :(得分:9)
我需要类似的东西,这解决了我的问题。
@FXML
public MenuButton menuButton;
......
CheckBox cb0 = new CheckBox("x");
CustomMenuItem item0 = new CustomMenuItem(cb0);
CheckBox cb1 = new CheckBox("y");
CustomMenuItem item1 = new CustomMenuItem(cb1);
item0.setHideOnClick(false);
item1.setHideOnClick(false);
menuButton.getItems().setAll(item0,item1);
答案 2 :(得分:0)
我知道这是一篇旧文章,但这只是@ user82426注释所描述的极简工作解决方案,并建议了“加入”部分。如前所述,它是使用http://javawiki.sowas.com/doku.php?id=javafx:combobox-multi-selection构建的。
如上所述,它不是COMBOBOX,而是MENUBUTTON ...尽管如此,它确实比我想要的要好于COMBOBOX,所以我认为它可以帮助其他;-)...
是这里:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.CheckMenuItem;
import javafx.scene.control.ListView;
import javafx.scene.control.MenuButton;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import java.util.Arrays;
import java.util.List;
public class MultiSelectionComboDemo extends Application {
final ListView<String> selectedItems = new ListView<>();
@Override
public void start(Stage primaryStage) {
final String sMenuTextStart = "Fruit : ";
final String sMenuTextEmpty = "[empty]";
final MenuButton choices = new MenuButton(sMenuTextStart+sMenuTextEmpty);
final List<CheckMenuItem> items = Arrays.asList(new CheckMenuItem("Apple"), new CheckMenuItem("Banana"), new CheckMenuItem("Pear"), new CheckMenuItem("Kiwi"));
choices.getItems().addAll(items);
for (final CheckMenuItem item : items) {
item.selectedProperty().addListener((observableValue, oldValue, newValue) -> {
if (newValue) {
selectedItems.getItems().add(item.getText());
} else {
selectedItems.getItems().remove(item.getText());
}
String sMenuText = sMenuTextStart + (selectedItems.getItems().size()>0?"":sMenuTextEmpty);
choices.setText(sMenuText+String.join(", ", selectedItems.getItems()));
});
}
BorderPane borderPane = new BorderPane();
borderPane.setTop(choices);
borderPane.setCenter(selectedItems);
primaryStage.setScene(new Scene(borderPane, 400, 300));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}