i need to resize an element when the main window is resized, i thought at anchor which is what i used in Visual Basic .NET, but i dosen’t found it in Qt Designer, What i should use ?
Details :
The element to resize : label
The main form is named : Form
Thanks !
In Qt, you use layouts for this. The base class is QLayout. In the Designer, you first assign a layout to your main window, and then insert the label into the layout. There are several types of layouts, and they have several properties that define the size behavior of its managed widgets.