package com.deng.lesson06;
import javax.swing.*;
import java.awt.*;
public class TestComboboxDemo01 extends JFrame {
public TestComboboxDemo01(){
Container container = this.getContentPane();
JComboBox comboBox = new JComboBox();
comboBox.addItem("名车");
comboBox.addItem("奔驰");
comboBox.addItem("法拉利");
comboBox.addItem("兰博基尼");
comboBox.addItem("雪铁龙");
container.add(comboBox);
this.setVisible(true);
this.setBounds(100,100,300,300);
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new TestComboboxDemo01();
}
}
Swing之下拉列表框
最新推荐文章于 2023-12-08 19:18:06 发布