gpt4 book ai didi

java - 如何允许 'one choice of many'控件?

转载 作者:行者123 更新时间:2023-12-01 17:07:57 24 4
gpt4 key购买 nike

我有一个 JFrame ,在该框架中我有一些 JCheckBox 组件。假设我有两组 5 个复选框。

我想这样做,以便我选中(例如)第一组中的第一个复选框,其他四个复选框将被禁用。但不是其他“集合”中的那些。

问题是,如果不编写大量 if 语句,我不知道如何做到这一点。因为实际上我有大约 26 个复选框。一组 15 个,一组 11 个。

我认为明智的做法是找出选中了哪个复选框,然后禁用所有复选框,但当然不禁用选中的复选框。但我不知道如何查看设置了哪个复选框。我只能检查特定的框。 EG

 @Override
public void itemStateChanged(ItemEvent e) {
if(e.getSource.equals(CheckBox_1){
//dostuff
}
}

最佳答案

您可以编写自己的 Controller ,将一组中的所有按钮关联在一起,例如......

ButtonSetController controller = ButtonSetController(
checkBox1,
checkBox2,
checkBox3,
checkBox4,
checkBox5);

Controller 会向每个按钮添加一个 ActionListener 并监视状态的变化。当发生适当的状态变化时, Controller 将能够自动禁用集合中的所有其他按钮...

public void actionPerformed(ActionEvent evt) {
JCheckBox btn = (JCheckBox)evt.getSource();
if (btn.isSelected()) {
for (JCheckBox cb : buttons) {
if (cb != btn) {
cb.setSelected(false);
cb.setEnabled(false);
}
}
} // Consider re-enabling all the buttons...?
}

现在,如果您也使用按钮数组,所有这一切都会变得更简单......

您还可以考虑将按钮添加到 ButtonGroup 中,这将确保每次仅选择一个按钮。

参见How to Use the ButtonGroup Component了解更多详情

作为一个粗略的例子

import java.awt.EventQueue;
import java.awt.GridBagLayout;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JToggleButton;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class ButtonControllerExample {

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

public ButtonControllerExample() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}

JCheckBox[] buttons = new JCheckBox[8];
buttons[0] = new JCheckBox("Bananas");
buttons[1] = new JCheckBox("Grapes");
buttons[2] = new JCheckBox("Apples");
buttons[3] = new JCheckBox("Pears");
buttons[4] = new JCheckBox("Kikiw");
buttons[5] = new JCheckBox("Potatos");
buttons[6] = new JCheckBox("Tomatoes");
buttons[7] = new JCheckBox("Tim Tams");

ButtonController<JCheckBox> controller = new ButtonController<>(4, buttons);

JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new GridBagLayout());

for (JCheckBox cb : buttons) {
frame.add(cb);
}

frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

public class ButtonController<T extends JToggleButton> {

private List<T> selected;
private int limit;

public ButtonController(int limit, T... buttons) {
if (limit <= 0) {
throw new IllegalArgumentException("Limit can not be equal to or less then 0");
}
this.limit = limit;
selected = new ArrayList<>(limit + 1);
ItemStateHandler handler = new ItemStateHandler();
for (T btn : buttons) {
btn.addItemListener(handler);
}
}

public class ItemStateHandler implements ItemListener {

@Override
public void itemStateChanged(ItemEvent e) {
T btn = (T)e.getSource();
if (!selected.contains(btn) && btn.isSelected()) {
selected.add(btn);
while (!selected.isEmpty() && selected.size() > limit) {
btn = selected.remove(0);
btn.setSelected(false);
}
} else {
selected.remove(btn);
}
}

}

}

}

关于java - 如何允许 'one choice of many'控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24521715/

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