有一个类AgentHome扩展了JFrame。 AgentHome有一个JPanel rem_panel。复选框被动态添加到rem_panel ...复选框的数量,具体取决于数据库表中的条目数,从中读取文本框要显示的文本。
AgentHome有一个整数变量x和一个复选框arraylist rem_cbarr。
rem_cbarr存储复选框,因为它们已创建并添加到rem_panel。 当程序执行时,当变量x设置为1时,我试图将这些复选框的背景颜色设置为红色。 我已经实现了JADE框架的TickerBehaviour来检查变量x是否设置为1。
我无法将复选框的背景颜色设置为红色。这是我实施的代码。请帮忙。感谢。
public void setup()
{
Behaviour loop = new TickerBehaviour( this, 2000 )
{
protected void onTick() {
timer();
}
};
addBehaviour( loop );
}
public void timer()
{
AgentHome hm=new AgentHome();
if(hm.x==1)
{
for (int i = hm.rem_cbarr.size()-1; i>=0; i--)
{
JCheckBox cb=hm.rem_cbarr.get(i);
cb.setBackground(Color.red);
hm.rem_panel.revalidate();
hm.rem_panel.repaint();
}
}
}
答案 0 :(得分:1)
GUI操作需要在EDT(事件调度程序线程)上完成。在java中,这可以通过调用SwingUtilities.invokeLater(Runnable run)
来实现。
答案 1 :(得分:1)
很多事情......
Thread#Sleep
尝试更新屏幕)JCheckBox
默认是透明的。public class FlashCheckBox {
public static void main(String[] args) {
new FlashCheckBox();
}
public FlashCheckBox() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new GridBagLayout());
frame.add(new FlashyCheckBox());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class FlashyCheckBox extends JCheckBox {
private final Color defaultBackground;
private int flash;
private Timer flashTimer;
public FlashyCheckBox() {
defaultBackground = getBackground();
flashTimer = new Timer(500, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
flash++;
if (flash % 5 == 0) {
setOpaque(false);
setBackground(defaultBackground);
flashTimer.stop();
} else if (flash % 2 == 0) {
setBackground(Color.YELLOW);
setOpaque(true);
} else {
setBackground(defaultBackground);
setOpaque(false);
}
repaint();
}
});
flashTimer.setRepeats(true);
flashTimer.setCoalesce(true);
flashTimer.setInitialDelay(0);
addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
flashTimer.restart();
}
});
}
}
}