2012年6月1日 星期五

Java Basic(68)-JcomboBox


import java.awt.*;
import java.awt.event.*;
import javax.swing.*;


public class Gui extends JFrame{
private JComboBox box;
private JLabel picture;
private static String[] filename = {"b.png", "g.bng"}; →你的照片陣列
private Icon[] pics = {new ImageIcon(getClass().getResource(filename[0])),new ImageIcon(getClass().getResource(filename[1]))};

public Gui(){
super("the title");
setLayout(new FlowLayout());
box = new JComboBox(filename);
}
}

沒有留言:

張貼留言