This commit is contained in:
EmmanuelTiamzon
2025-09-30 09:43:41 +02:00
parent f7de13bc2a
commit 7019a3b7ea
176 changed files with 9458 additions and 149 deletions

View File

@@ -0,0 +1,27 @@
/*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);
}
}