Reputation: 13693
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
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.
Upvotes: 2