Reputation: 3390
I have to figure out how to create a drop down panel without using swing. Is anything like this online? Can anyone send me a link. Point me in a good direction.
I can use AWT.
Upvotes: 0
Views: 2965
Reputation: 8747
AWT has the Choice class.
Choice myChoice = new Choice();
Upvotes: 1