This commit is contained in:
2024-09-12 15:34:31 +02:00
parent 7186ac2c9a
commit fae997b0e8
52 changed files with 339 additions and 28 deletions

View File

@@ -0,0 +1,19 @@
import java.awt.*;
import javax.swing.*;
import java.util.*;
import java.io.*;
public class Changement{
ClassLoader loader = Thread.currentThread().getContextClassLoader();
InputStream file = loader.getResourceAsStream("Main.java");
InputStream file2 = loader.getResourceAsStream("Listeimage.java");
static public void fenetreCliquer(int LR){
if (LR==1){
Main.fenetre.pan.card.next(Main.fenetre.pan);
}else {
Main.fenetre.pan.card.previous(Main.fenetre.pan);
}
Main.fenetre.revalidate();
}
}