The example of this article describes the implementation method of swing drop-down menu in java. Share it with everyone for your reference. The details are as follows:
import java.awt.*; import javax.swing.*; import java.awt.event.*; public class test extends JApplet implements ItemListener{ JLabel jtf; ImageIcon a1, a2, a3; public void init(){ Container contentPane = getContentPane(); contentPane.setLayout(new FlowLayout()); JComboBox jc = new JComboBox(); jc.addItem("6"); jc.addItem("7"); jc.addItem("8"); jc.addItemListener(this); contentPane.add(jc); jtf = new JLabel(new ImageIcon("D:/data/Images/6.gif")); contentPane.add(jtf); } public void itemStateChanged(ItemEvent ie){ String s = (String)ie.getItem(); jtf.setIcon(new ImageIcon("D:/data/Images/"+s+".gif")); } }
I hope this article will be helpful to everyone’s java programming.
For more articles related to Java's swing drop-down menu implementation method, please pay attention to the PHP Chinese website!