展开全部
你把文本框和下拉列表添加到frame中了吗?
我建议使用32313133353236313431303231363533e78988e69d8331333363393031swing包下面的类。package cn.llc.opera;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class JFreamTest extends JFrame{
public JFreamTest() {
this.setBounds(0, 0, 500, 600);
this.setLayout(null);
JPanel panel = new JPanel();
panel.setBounds(50, 50, 400, 500);
panel.setLayout(null);
JTextField text1 = new JTextField("你好");
text1.setBounds(50, 50, 200, 20);
JComboBox comboBox = new JComboBox();
comboBox.addItem("0");
comboBox.addItem("1");
comboBox.addItem("2");
comboBox.setBounds(50, 80, 200, 20);
panel.add(comboBox);
panel.add(text1);
panel.setVisible(true);
this.add(panel);
this.setVisible(true);
}
public static void main(String[] args) {
new JFreamTest();
}
}