summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java
diff options
context:
space:
mode:
Diffstat (limited to 'Dozentenmodul/src/gui/image/FTPDownloader_GUI.java')
-rw-r--r--Dozentenmodul/src/gui/image/FTPDownloader_GUI.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java b/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java
index 96826596..a5c973df 100644
--- a/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java
+++ b/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java
@@ -20,6 +20,7 @@ import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.border.EmptyBorder;
import ftp.DownloadTask;
+import gui.intro.About_GUI;
import gui.intro.MainMenue_GUI;
import java.awt.event.ActionListener;
@@ -319,6 +320,15 @@ public class FTPDownloader_GUI extends JFrame implements PropertyChangeListener
});
menu.add(menuItem_1);
+
+ JMenuItem mntmAbout = new JMenuItem("About");
+ mntmAbout.addActionListener(new ActionListener() {
+ public void actionPerformed(ActionEvent e) {
+ About_GUI ab = new About_GUI();
+ ab.setVisible(true);
+ }
+ });
+ menu.add(mntmAbout);
{
JPanel buttonPane = new JPanel();
buttonPane.setBackground(UIManager.getColor("Button.background"));