tags:

views:

110

answers:

1

I'm trying to get a QFrame to serve as a "display area" for a couple different kinds of information, eg: you click on something in a list view and an info pane shows up in the frame to give you information about it, you click on a different item and a different pane shows up.

Having trouble swapping the different frames in and out of the QFrame though, is there a way to do this?

+2  A: 

Using QStackedWidget is probably the most standard solution.

Lukáš Lalinský
Ah exactly what I need, thanks!
gct