该程序将在JPanel上显示3个按钮。该程序已成功编译。然后GUI窗口出现并为空。当我最小化窗口然后再次最大化时,按钮出现。再次这样做会出现另一组按钮。刷新窗口时,按钮会一直显示,旧数据保持不变。
JPanel Class
class MyJPanel extends JPanel {
JButton jb1, jb2, jb3;
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.setColor(Color.WHITE);
g.fillRect(0, 0, this.getWidth(), this.getHeight());
jb1 = new JButton();
jb2 = new JButton("Green");
jb3 = new JButton("Blue");
//g.drawString("Welcome!", 100, 100);
ImageIcon img = new ImageIcon("next.png");
jb1.setIcon(img);
jb1.setToolTipText("Button 1");
this.add(jb1);
this.add(jb2);
this.add(jb3);
}
}
JFrame类
class MyJFrame extends JFrame {
MyJPanel mjp;
public MyJFrame(String title) {
super(title);
mjp = new MyJPanel();
Container ct = getContentPane();
ct.add(mjp);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
驱动程序类
class Gui5JButton {
public static void main(String[] args) {
MyJFrame mjf = new MyJFrame("Prakhar");
mjf.repaint();
}
}
答案 0 :(得分:2)
paintComponent
,因此每次最小化窗口时它都会再次按下按钮。如果我理解你想要正确执行的操作,则需要删除覆盖并输入以下代码:
jb1 = new JButton();
jb2 = new JButton("Green");
jb3 = new JButton("Blue");
//g.drawString("Welcome!", 100, 100);
ImageIcon img = new ImageIcon("next.png");
jb1.setIcon(img);
jb1.setToolTipText("Button 1");
this.add(jb1);
this.add(jb2);
this.add(jb3);
在MyJPanel类的构造函数中。