0

有一个类 AgentHome 扩展了 JFrame。AgentHome 有一个 JPanel rem_panel。复选框被动态添加到 rem_panel...复选框的数量取决于数据库表中的条目数,文本框要显示的文本从该表中读取。

AgentHome 有一个整数变量 x 和一个复选框数组列表 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();
                   }
      }
}
4

2 回答 2

1

GUI 操作需要在 EDT(Event Dispatcher Thread)上完成。在 java 中,这通过调用SwingUtilities.invokeLater(Runnable run).

于 2013-01-29T08:33:53.467 回答
1

很多事情...

  • UI 组件应该只在事件调度线程的上下文中更新
  • 您永远不应该执行任何可能阻塞事件调度线程的操作(例如使用循环或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();
                }
            });

        }

    }

}
于 2013-01-29T09:01:10.547 回答