gpt4 book ai didi

java - 动态添加 JCheckBox

转载 作者:行者123 更新时间:2023-12-02 06:43:27 26 4
gpt4 key购买 nike

有没有办法动态添加 JCheckBox 类型的项目在 Java 中如 JComboBox我们使用addItem方法?

最佳答案

如果您想将多个项目添加到另一个组件,这样的方法可能会有效:

List<Component>  myList = new Arraylist<Component>() //List for storage
Item myItem = new Item(); //New component
myList.add(myItem); //Store all the components to add in the list

for(int i = 0; i < myList.size; i++){
myjCheckBox.add(myList[i]); //Add all items from list to jCheckBox
}

上面的示例使用 this在jCheckBox中继承的方法应该能够提供你所需要的

希望对你有帮助!

关于java - 动态添加 JCheckBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18890193/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com