thefonso
thefonso

Reputation: 3390

How to create a drop down list in java without swing using panel?

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

Answers (1)

jhurtado
jhurtado

Reputation: 8747

AWT has the Choice class.

Choice myChoice = new Choice();

Upvotes: 1

Related Questions