1

我有一堆动态添加的面板,其中包含单选按钮和一个带有多个标签的面板绑定到单选按钮。假设我有一个按钮应该检索带有标签的容器绑定到选定的单选按钮,或者让我们说另一个词 - 数据绑定到选定的单选按钮。但是如何获得这个容器呢?

这是我尝试执行此操作的代码(实际上,这是一个显示 UI(视图)端正在发生的事情的存根):

public class Test extends JFrame {
    public static ButtonGroup radioButtons = new ButtonGroup();

    public Test() {
        super("Test");
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        setSize(200, 300);

        final JPanel panel = new JPanel();
        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        JButton addButton = new JButton("Add");
        addButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                panel.add(new PanelWithRadioButton("text1", "text2"));
                panel.revalidate();
            }
        });
        panel.add(addButton);

        JButton infoButton = new JButton("Info");
        infoButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                for(Enumeration<AbstractButton> myRadioButtons = radioButtons.getElements();
                    myRadioButtons.hasMoreElements();) {
                    JRadioButton btn = (JRadioButton) myRadioButtons.nextElement();

                    if(btn.isSelected()) {
                        PanelWithTwoLabels panelWithLabels = (PanelWithTwoLabels) btn.getComponent(1); //Trying to get Component bind to selected JRadioButton
                        JOptionPane.showMessageDialog(null, "Text1: " + panelWithLabels.getLabel1Text() + ", Text2: " + panelWithLabels.getLabel2Text());
                    }
                }
            }
        });
        panel.add(infoButton);

        getContentPane().add(panel);
        setVisible(true);
    }

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

    //JRadioButton + Panel with two text fields
    private class PanelWithRadioButton extends JPanel {
        private JRadioButton rButton;
        private PanelWithTwoLabels panelWithTwoLabels;

        public PanelWithRadioButton(String text1, String text2) {
            setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
            panelWithTwoLabels = new PanelWithTwoLabels(text1, text2);
            rButton = new JRadioButton();
            rButton.add(panelWithTwoLabels); //Bind Component to JRadioButton
            radioButtons.add(rButton);

            add(rButton);
            add(panelWithTwoLabels);
        }
    }

    private class PanelWithTwoLabels extends JPanel {
        private JLabel label1;
        private JLabel label2;

        public PanelWithTwoLabels(String text1, String text2) {
            setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
            label1 = new JLabel(text1);
            label2 = new JLabel(text2);

            add(label1);
            add(label2);
        }

        private String getLabel1Text() {
            return label1.getText();
        }

        private String getLabel2Text() {
            return label2.getText();
        }
    }
}
4

2 回答 2

4

听起来您正在开发一个数据驱动的问答程序。虽然通过递归遍历从容器getComponents()方法返回的数组,所示方法在技术上是可行的,但结果混淆了包含和继承层次结构;它的扩展性也很差。

相反,按照此处的建议,将模型(字符串、选择)和视图(标签、按钮)分开。让视图使用显示的通知方法之一来监听其模型。这样,视图的每个实例都知道自己的按钮以及选择了哪个按钮。几乎所有的标准 Swing 组件都是这种可分离模型架构的一个很好的例子。

附录:虽然我不愿意支持隐式设计限制,但这是一种权宜之计。

PanelWithRadioButton中,添加对panelWithTwoLabels作为客户端属性的引用:

rButton.putClientProperty("labels", panelWithTwoLabels);

actionPerformed()中,使用属性检索panelWithTwoLabels

PanelWithTwoLabels panelWithLabels =
    (PanelWithTwoLabels) btn.getClientProperty("labels");
于 2013-08-19T16:30:40.680 回答
2

与您的问题无关,但...

panel.updateUI();

不要那样使用 updateUI() 方法。当 LAF 更改时,Swing 在内部使用 updateUI() 方法。

当您将组件添加到可见的 GUI 时,您应该使用:

panel.revalidat();
panel.repaint(); // sometimes needed
于 2013-08-19T18:16:22.293 回答