QToolBox: how to have multiple items visible at the same time

时间:2015-07-28 16:31:53

标签: qt

So far my QToolBox only alows me to have one element open/visible at the time.

How can the following be achieved? Is it possible by using a QToolBox?: Please see the image, the arrows show what I mean.

Desired effect

1 个答案:

答案 0 :(得分:2)

QToolBox only supports one current (visible) item.

You could achieve what you wish with a QTreeView and a suitable model.

相关问题