Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序中有2个视图,其中一个(我们称之为A)我可以输入一个值并将其添加到下一个视图中的列表(我们称之为B)当我启动这个视图时,当我添加时一切都很好我的构造函数中的每个这样的项目
for (Rekening r : app.getRekeningen()) { rekeningList.addItem(r); }
但是,当我在视图 B 打开时在视图 A 中添加一个新项目时,它显然不会用新值更新 JComboBox。我的问题是我怎样才能做到这一点?
你有几个选择:
repaint()