Qt 6.11 is out! See what's new in the release
blog
Qt side menu with different window QtWidgets
General and Desktop
3
Posts
2
Posters
1.8k
Views
1
Watching
-
Hello,
I want to create a tree menu that when I click an Item, a different set of widgets will appear on the right side. (see images below).
I already know how to create a tree widget.
!http://s29.postimg.org/5k7nnke7b/image.jpg(1)!
!http://s11.postimg.org/wtl5mf137/image.jpg(2)! -
what is the issue you are facing ? Is it just one level tree on the left side ? Horizontal layout with signal and slot mechanism should help you here. You need to have click signal on the tree element connected to slot. Inside this slot you can create different widgets. For widgets section you can use stacked widget as well.