first commit

This commit is contained in:
2025-10-23 14:28:03 +02:00
commit fb76e22594
81 changed files with 3605 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package galerie.app;
import galerie.model.ImageList;
import galerie.view.GalleryCardLayoutFrame;
import javax.swing.*;
public class MainCardLayout {
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
ImageList model = new ImageList("img1.jpg","img2.jpg","img3.jpg","img4.jpg");
new GalleryCardLayoutFrame(model).setVisible(true);
});
}
}