奇怪的摇摆故障?

时间:2016-04-20 20:00:43

标签: java swing

我不明白这一点,我目前正在为我正在制作的游戏制作一个主菜单但是由于某种原因,当我将鼠标悬停在JButton上时,它会在左上角闪烁JFrame。我没有任何mouseAction方法或任何东西,是我使用的gif吗?我不确定......

这是错误的屏幕抓取

http://i.stack.imgur.com/BTUmP.png

这是我的代码:

import javax.swing.*;
import java.awt.*;

public class MainMenu {
JFrame frame = new JFrame("Frasergatchi");

public void display(){
    frame.setSize(400,400);
    frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    frame.setResizable(false);
    frame.setVisible(true);
}

public void addComponents(){
    JButton play = new JButton("Play");
    JButton instructions = new JButton("Instructions");
    JButton exit = new JButton("Exit");
    JPanel panel = new JPanel();
    paintMenu paintMenu = new paintMenu();

    panel.setLayout(new BoxLayout(panel,BoxLayout.Y_AXIS));

    frame.add(panel);

    play.setAlignmentX(Component.CENTER_ALIGNMENT);
    instructions.setAlignmentX(Component.CENTER_ALIGNMENT);
    exit.setAlignmentX(Component.CENTER_ALIGNMENT);

    panel.add(paintMenu);
    panel.add(play);
    panel.add(instructions);
    panel.add(exit);
}

public class paintMenu extends JPanel{
    public void paintComponent(Graphics graphics){
        Image dog = new ImageIcon(getClass().getResource("DogMenuImage.gif")).getImage();
        graphics.drawImage(dog,170,240,this);
    }
}
}

1 个答案:

答案 0 :(得分:5)

paintComponent()方法中的第一个语句应始终为:

super.paintComponent(g); 

确保背景清除。

此外:

  1. 不要在绘画方法中进行I / O操作。绘画方法仅用于绘画。读取类的构造函数中的图像,并将其与实例变量中的图像相同。

  2. 类名应该以大写字符开头。想想JDK中的所有类,并遵循标准。

  3. 无需创建自定义类来绘制图像。只需使用带有Icon的JLabel。