Hello all,

I am new to Qt programming.

In my project, I am using standard QProgressDialog. But the progress bar inside that dialog is aligned at the bottom section along with a Cancel button. I want to move the progress bar or the button to some distance from each other.

I tried with

findChildren<QProgressBar>().move(5,10);

but it doesn't work.

Does anybody knows how to approach it and find a solution.

Many thanks in advance!