Gandalf
Gandalf

Reputation: 13693

QStackedWidget equivalent for Java Swing

I am porting a small qt app to java and i was wondering if java swing has an equivalent to Qt's QStackedWidget.

Upvotes: 2

Views: 435

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168835

This QStackedWidget?

The QStackedWidget class provides a stack of widgets where only one widget is visible at a time..

See CardLayout, as shown here.

Game view High Scores view

Upvotes: 2

Related Questions