I'm loading images dynamically inside a FlowLayoutPanel
. I need for this panel to auto-size but only vertically.
Is this possible, and if so, how do I go about achieving it?
I'm loading images dynamically inside a FlowLayoutPanel
. I need for this panel to auto-size but only vertically.
Is this possible, and if so, how do I go about achieving it?
Simple, add a event of type control added:
set
AutoSize = true
set
flowdirection = LeftToRight
I did set the Size from panel dinamically. Example:
It works for me. Thx all