如何在不使用cardlayouts的情况下重新加载面板?

6vl6ewon  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(455)

tldr;:
我正在寻找重新加载jpanels及其组件的方法。
我想实现一个动态变化的jcombobox。情况如下:
有一个按钮,它在后台生成数据(“生成内容”),这里只是一些随机数。生成数据后,应该可以在jcombobox中选择此数据。

/**
 * Initialize the contents of the frame.
 */
private void initialize() {
    frame = new JFrame();
    frame.setBounds(100, 100, 450, 300);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    panel = new JPanel();
    frame.getContentPane().add(panel, BorderLayout.CENTER);
    panel.setLayout(null);

    comboBox = new JComboBox<String>();

    comboBox.setBounds(39, 63, 144, 20);
    panel.add(comboBox);

    btnGenerateContent = new JButton("generate content");
    btnGenerateContent.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            comboContent = fillrandoms();
            comboBox = new JComboBox<>(fillrandoms());

        }
    });
    btnGenerateContent.setBounds(39, 11, 117, 23);
    panel.add(btnGenerateContent);
}

private static String[] fillrandoms() {
    String[] array = new String[10];
    for (int i = 0; i < 10; i++) {
        array[i] = "" + Math.random() * 100;

    }

    return array;
}

现在,当我执行程序时,它将在有数据显示之前声明并初始化组合框。我现在的想法是,当我点击“生成内容”按钮时,这也会更新面板或组合框的ui。但当我插入 panel.updateUI() 或者 comboBox.updateUI() 什么都没发生。
经过研究,我找到了一些方法来使用cardlayouts,但是我没有将它们用于我的jcombobox,所以我可能需要另一种方法。我甚至不知道这是普通的方法还是其他更好的方法。

mw3dktmi

mw3dktmi1#

更新ui使用方法 panel.revalidate() , panel.repaint() ,或 revalidate() . revalidate()和repain()方法是反映ui更新任务的正确方法。

相关问题