Hallo Forum,
habe meine 1. Frage :lol: zu Javaquellcode
ich habe diesen Codeteil
meine Frage ist nun, wie kann ich diese Klasse im ActionListener aurufen ....
Gr
habe meine 1. Frage :lol: zu Javaquellcode
ich habe diesen Codeteil
Code:
// ActionListener für den Menüeintrag "Info"
goftInfo.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(null, "GOFT VisualTRAMO - GUI für Tramo \nVersion 1.0 \nCopyright (c) 2003
\nMarkus Behr, Christian Markgraf, Thomas Wurm \nJava Computing ([url]www.wi3.uni-erlangen.de[/url])", "Goft",
JOptionPane.INFORMATION_MESSAGE);
}
});
// ActionListener für den Menüeintrag "Hilfe"
goftHilfe.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(null, "Noch nix implementiert!", "Alert", JOptionPane.ERROR_MESSAGE); // HIER
}
});
/* goftHilfe.java */
package goft;
import java.awt.*;
import java.awt.event.*;
public class goftHilfe
extends Frame
{
public static void main(String[] args)
{
goftHilfe wnd = new goftHilfe();
}
public goftHilfe()
{
super("Bitmap-Komponente");
setBackground(Color.lightGray);
setSize(250,150);
setVisible(true);
//Hinzufügen der Komponenten
setLayout(new GridLayout(2,2));
add(new BitmapComponent("img/openfile.gif"));
add(new BitmapComponent("img/savefile.gif"));
add(new BitmapComponent("img/.gif"));
add(new BitmapComponent("img/.gif"));
pack();
//WindowListener
addWindowListener(new WindowClosingAdapter(true));
}
}
Gr