Making the whole window/form scrollable
We have an application with some fairly tall windows. If users run the software at a resolution lower than 1280 x 1024, these tall window do not fit completely. Some users will use a scrollable virtual desktop to get around the issue but that gets annoying.
Is there an easy way to make the entire window/form scrollable so that when you drag the window to a size that's too small to display all the widgets, the window itself then becomes scrollable ?
Re: Making the whole window/form scrollable
You can inherit your forms from QScrollArea.
Re: Making the whole window/form scrollable
Geez - that was easy. Thanks for pointing out the ovbious to an obvious beginnner ! Works perfectly.