0

我在将 JMenuBar 和 JPanel 添加到 JFrame 时遇到了一些问题,这是我的主要方法:

public static Timer timer = new Timer(100, ActionListener.repaint);


public static void main(String[] args) {
    Insets in;
    frame.setSize(600, 500);
    frame.pack();
    in = frame.getInsets();
    frame.setSize(600 + (in.left + in.right) - 10, 500 + (in.top + in.bottom) - 10);
    frame.setResizable(false);

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocationRelativeTo(null);
    add.addActionListener(new ActionListener());
    frame.setJMenuBar(menuBar);


    menuBar.add(file);
    file.add(add);
    file.add(sub);

    frame.add(gui);
    timer.start();

    frame.setVisible(true);
}

'gui' 字段是我的 JPanel 类:

@Override
public void paintComponent(Graphics g) {


}

这是我的重绘计时器:

public static java.awt.event.ActionListener repaint = new java.awt.event.ActionListener() {

    @Override
    public void actionPerformed(ActionEvent e) {
        GUI.gui.repaint();
    }
};

这是输出:

你可以看到它复制了我的 JMenuBar

看看它是如何复制 JMenuBar 的?它对绘制在该 JPanel 上的任何内容执行此操作。有什么解决办法吗?

4

1 回答 1

1

有什么解决办法吗?

是的。不要调用方法Thread.sleeppaintComponent事实上,不要Thread.sleep在 Swing 应用程序中的任何地方调用。对于周期性延迟,请使用Swing Timer

于 2013-09-09T16:04:37.883 回答