Home  >  Article  >  Java  >  Implementation method of swing drop-down menu in java

Implementation method of swing drop-down menu in java

高洛峰
高洛峰Original
2017-01-17 11:19:552197browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn