Updatet the Control.java and ControlWindow.java and implemented new features.

This commit is contained in:
Noah
2021-11-30 18:41:57 +01:00
parent 359b153460
commit 2164e372b3
5 changed files with 180 additions and 21 deletions
+2 -2
View File
@@ -57,7 +57,7 @@ public class MenuWindow {
menuWindow.setTitle(title);
ImageIcon imageIcon = new ImageIcon("src/files/PNG/Icon.png");
ImageIcon imageIcon = new ImageIcon("src/data/icons/Icon.png");
menuWindow.setIconImage(imageIcon.getImage());
@@ -362,7 +362,7 @@ public class MenuWindow {
}
private void initIMG(){
preview = new ImageIcon("src/files/PNG/Preview.png");
preview = new ImageIcon("src/data/pictures/Preview.png");
previewLabel = new JLabel(preview);
previewLabel.setBounds(450, 45, 203, 302);
}