所以我的代码基本上有一个JPanel
带有一些文本字段和一个的JButton
,当用户单击按钮时,它转到按钮侦听器,然后从文本字段中获取数据并处理它,创建JLabels
它添加到另一个不可见JPanel
的。然后我使第一个 JPanel 不可见,并使第二个面板可见,显示我生成的“结果”。
这一切都有效,但问题是,当我的程序处理它从文本字段中获取的数据时,我想要JButton
更改它所说的内容,并且我已经尝试使用event.getSource().setText()
,并且我能够发现它正在更改按钮文本(通过打印到控制台),但它没有使用更改的文本更新按钮。
在此之后,我尝试了所有形式的重新验证、重新绘制和验证,但都没有奏效。有任何想法吗?谢谢!
//entryPanel is the first panel, and picksPanel is the second panel
button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
((JButton)event.getSource()).setText("Thinking...");
revalidate();
repaint();
try
{
CriticPick picks = new CriticPick(cityfield.getText(),statefield.getText());
LinkedList<Movie> pickslist = picks.getList();
glayout.setRows(pickslist.size()+2+thepicks.movnum);
picksPanel.add(new JLabel("The Results:"));
//In my actual code I do a bunch of processing and looping that results in jlabels being added to picksPanel
for (int i=0;i<pickslist.size();i++)
{
JLabel label = new JLabel(pickslist.get(i).title);
picksPanel.add(label);
}
}
catch (Exception exc)
{
System.out.println(exc);
}
entryPanel.setVisible(false);
picksPanel.setVisible(true);
}});
guiFrame.add(entryPanel);
guiFrame.add(picksPanel);
guiFrame.setLayout(new FlowLayout(FlowLayout.LEFT));
guiFrame.setVisible(true);
}