gpt4 book ai didi

java - 刷新 JPanel 以显示 JList 中添加的组件

转载 作者:行者123 更新时间:2023-12-02 08:52:41 24 4
gpt4 key购买 nike

因此,在我的代码中,我有一个带有菜单栏的框架,可以让我添加面板。一个面板有一些 TextFields,我通过它们构建对象,将它们添加到 ArrayList,然后将它们显示在 JList 中。

我的问题是,当我按下构建对象的按钮时,面板不会刷新以立即显示 JList 的内容,我实际上必须从菜单栏中调用面板才能使其工作。

所以这是我构建 JList 并在 ArrayList 存在时填充它的部分(这部分位于面板的构造函数中):

        listModel = new DefaultListModel();
if (!MainInterface.listCat.isEmpty()) {
for (CategorieArticle c : MainInterface.listCat) {
listModel.addElement(c.toString());
}
}
list = new JList(listModel);

这是构建对象并将它们添加到 ArrayList 的按钮方法(这部分位于 ActionListener 方法中):

    public void actionPerformed(ActionEvent e) {
Object o = e.getSource();
if (o == bEnr) {
if (tfNoCat.getText().isBlank() || tfNomCat.getText().isBlank()) {
} else {
MainInterface.listCat.add(new CategorieArticle(tfNomCat.getText()));
tfNoCat.setText("");
tfNomCat.setText("");
mainPanel.revalidate();
mainPanel.repaint();
}
}
}

问题是 .revalidate().repaint() 没有刷新面板以使其遍历第一段代码并填充 JList .

任何帮助将不胜感激。

最佳答案

list = new JList(listModel);

上面的代码什么也没做。您创建了一个新的 JList,但从未将其添加到框架中。

不要继续创建 JList。当您最初为 GUI 创建组件时,JList 仅创建一次并添加到滚动 Pane 中,该滚动 Pane 会添加到框架中。

要更改 JList 中显示的数据,您只需更新现有 JList 的 ListModel。 JList 将自动重新绘制自身。

mainPanel.revalidate();
mainPanel.repaint();

也不需要,因为您从未向 ActionListener 中的面板添加任何组件。

, add them to an ArrayList and then display them in a JList.

这才是真正的问题。不需要ArrayList。数据已存储在 ListModel 中。不需要将数据放在两个地方。

只需将数据直接添加到 ActionListener 中的 ListModel 即可。

//MainInterface.listCat.add(new CategorieArticle(tfNomCat.getText()));
CategorieArtical c = new CategorieArticle( tfNomCat.getText() );
listModel.addElement( c.toString() );
//MainInterface.listCat.add( c ); // if you really need the ArrayList for some other reason

您应该在类中创建“listModel”作为实例变量,以便可以在 ActionListener 中访问它。

关于java - 刷新 JPanel 以显示 JList 中添加的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60684391/

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