2

在编写我的 Swing 应用程序时,我总是遇到这个问题,我想我最终会得到一个明确的答案,而不是玩弄它直到我让它工作......

我有一个 JFrame。在这个 JFrame 里面是一个 JButton。在 ActionListener 中,我想几乎清空 JFrame,留下一两个组件(包括删除 JButton)。然后应用程序冻结,因为在 ActionListener 完成之前您无法删除该组件。我该如何解决?

4

2 回答 2

6

删除组件时不要忘记调用容器,validate()并且应该可以正常工作。repaint()

import java.awt.Component;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

public class RemoveDemo {

    static class RemoveAction extends AbstractAction{
        private Container container;

        public RemoveAction(Container container){
            super("Remove me");
            this.container = container;
        }

        @Override
        public void actionPerformed(ActionEvent e) {
            container.remove((Component) e.getSource());
            container.validate();
            container.repaint();    
        }
    }

    private static void createAndShowGUI() {
        final JFrame frame = new JFrame("Demo");
        frame.setLayout(new FlowLayout());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        RemoveAction action = new RemoveAction(frame);
        frame.add(new JButton(action));
        frame.add(new JButton(action));

        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
            }
        });
    }
}
于 2012-07-26T03:42:42.853 回答
3

用于在事件队列中EventQueue.invokeLater()添加一个合适的。Runnable它“将在处理完所有未决事件后发生”。

于 2012-07-26T03:48:45.250 回答