package com.java.choose;
import java.awt.*;
public class ChoiceList extends Frame {
Choice choice;
Label select;
ChoiceList() {
setLayout(new FlowLayout());
choice=new Choice();
select=new Label("地区:");
choice.add("广州");
choice.add("上海");
choice.add("北京");
add(select);
add(choice);
setSize(300,150);
setVisible(true);
}
public static void main(String args[]) {
ChoiceList testC=new ChoiceList();
}
}