The PickList component allows the user to choose options from two ListBoxes, moving them from one to the other.
The application can then decide how to process the options the user has chosen.
You can also provide the ListBoxes to the PickList and hence better control their appearance.
|
|
String list1[] = { "Cows", "Sheep", "Pigs", "Chickens", "Goats", "Ducks" };
String list2[] = { "Truck", "Tractor", "Harvester", "Trike", "Ute", "Sedan" };
PickList pl = new PickList(list1,list2);
|