Files
DEV/DEV.2.1/CM1/ex3/Compteurs.java
EmmanuelTiamzon 7019a3b7ea update
2025-09-30 09:43:41 +02:00

27 lines
644 B
Java

/*Emmanuel SRIVASTAVA-TIAMZON*/
import javax.swing.*;
import java.awt.*;
public class Compteurs extends JComponent {
private Image img;
public Compteurs() {
super();
this.img = Toolkit.getDefaultToolkit().getImage("img.png");
}
@Override
protected void paintComponent(Graphics pinceau) {
Graphics secondPinceau = pinceau.create();
if (this.isOpaque()) {
secondPinceau.setColor(this.getBackground());
secondPinceau.fillRect(0, 0, this.getWidth(), this.getHeight());
}
secondPinceau.setColor(this.getForeground());
secondPinceau.drawImage(this.img, this.getWidth()/2, this.getHeight()/2, this);
}
}