Pergunta

Suppose i have some widget in qt designer,i need to stable their size , it means i want to disable resizable feature. how i do it?

Foi útil?

Solução

if set to maximum, it will at least allow to make the dialog smaller.

enter image description here

would be one way, the other is inside your code using:

setWindowFlags(windowFlags() | Qt::MSWindowsFixedSizeDialogHint);

soo long zai

Outras dicas

in qt designer, right click on your dialog, select size constraints > set maximum size and set minimum size

enter image description here

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top