J
JComboBox
Gast
Hallo
Wie kann ich die Werte von dieser Klasse
in diese JComboBox laden?
Wie kann ich die Werte von dieser Klasse
Code:
class Schueler {
String[] schuelerx = {"Roffel", "lol", "genau"};
}
in diese JComboBox laden?
Code:
public class Notendurchschnitt extends JPanel implements ActionListener
{
private JComboBox schuelerauswahl;
private String[] schuelerindex;
private JFrame owner;
public static void main(String[] args)
{
JFrame frame = new JFrame("Dialog-Test");
frame.getContentPane().add(new Notendurchschnitt(frame));
frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
frame.addWindowListener
(
new WindowAdapter()
{
public void windowClosing(WindowEvent event)
{
System.exit(0);
}
}
);
frame.pack();
frame.setSize(500,500);
frame.setVisible(true);
}
public Notendurchschnitt(JFrame owner)
{
setBackground(Color.lightGray);
setLayout(null);
this.owner = owner;
schuelerauswahl = new JComboBox();
schuelerauswahl.addActionListener(this);
schuelerauswahl.setSelectedIndex(0);
schuelerauswahl.setBounds(200,300,200,20);
add(schuelerauswahl);
}
}