简体   繁体   中英

Java Swing - Repaint() not working

Following is my code. The GUI is not clearing itself on the mouse click event even though the action listener function is being called-

package GUI;
import java.awt.Color;
import java.awt.Event;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseListener;
import javax.swing.*;
import ospackage.tablefunctions;

public class GUI_new extends JPanel implements ActionListener{

 Graphics g1;
 JButton buttonNext = new JButton();
 int L=0;

public void display() {
    final JFrame f=new JFrame("Rectangle");     
    f.setContentPane(new GUI_new());
    f.setSize(1000,1000);
    f.setVisible(true);
    f.getContentPane().setBackground(Color.BLACK);

    f.setLayout(null);
    f.add(buttonNext);

    buttonNext.setBounds(900,30, 200, 200);
    buttonNext.setVisible(true);

    buttonNext.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent e) {
            // TODO Auto-generated method stub
            //printBlocks(g, 100);
            //buttonNext.revalidate();
            removeAll();
            revalidate();
            //f.repaint();
            //System.out.println("called repaint");
            repaint();

            System.out.println("called");
        }
    });

}

tablefunctions io = new tablefunctions();

public void paint(final Graphics g) {
    super.paint(g);
    printBlocks(g, 0);
}

public void printBlocks(Graphics g , int offset ) {
    int i=0,j=0,l=offset;

    for(i=20;i<620;i=i+60) {
        for(j=20;j<820;j=j+80) {
             String temp=Integer.toString(l);
              if(!io.retrieveData("FAT","address" , 2, temp).equals("free"))
                  g.setColor(Color.RED);
              else
                  g.setColor(Color.GREEN);

            g.drawRect(j, i, 60, 30);
            g.fillRect(j, i, 60, 30);
            g.drawString("Cluster" + l,j , i-5 );

            l++;
    }
}
}

@Override
public void actionPerformed(ActionEvent e) {
    // TODO Auto-generated method stub
//  e.getSource().equals()

}

public static void main(String[] args) {
    GUI_new gn = new GUI_new();
    gn.display();
}
}

There is a problem with two instances of GUI_new . Replace:

f.setContentPane(new GUI_new()); 

with:

f.setContentPane(this);

The issue is that actionPerformed repaints the this instance, but JFrame content is initialized with a second instance.

Please note that using absolute layout can be complex and usually can be avoided. See A Visual Guide to Layout Managers for some ideas.

Also, do override paintComponent() rather than paint() . See Performing Custom Painting .

Try this:

GUI_new.this.removeAll(); 
GUI_new.this.updateUI();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM