How to add a border to layout?

13.7k Views Asked by At

I would like to add a border to a layout, but I can't. This is the layout:

HPOUT1L_layout = QHBoxLayout()
HPOUT1L_layout.addLayout(HPOUT1L_connectors_layout)
HPOUT1L_layout.addWidget(lbl_HPOUT1L)

I tried using styles, but it didn't work. Perhaps I could use QFrames instead, but I have to do a lot of changes.

1

There are 1 best solutions below

1
On

It is not clear what you mean by "a lot of changes".

You could insert your layout in a QFrame.

enter image description here

  • On the top, you can see a simple verticalLayout with two buttons.
  • On the bottom, the same verticalLayout inside a QFrame.