I have a UserControl
which consists of a Label
(Top), a FlowLayoutPanel
(Fill, TopDown flow and no wrap) and a Panel
(Bottom). The user control creates a number of controls, based on a list of stuff it gets, and adds them to the FlowLayoutPanel
.
How can I get this UserControl
to properly resize itself so that the FlowLayoutPanel
does not have any scroll bars? I have tried to use various combinations of AutoSize
and AutoSizeMode
on the FlowLayoutPanel
and the UserControl
itself, but I can't seem to get it working. Either I end up with something that doesn't resize itself at all, or it doesn't become big enough or it is squished down to almost nothing.