tags:

views:

433

answers:

1

I need a System.Windows.Forms.FlowLayoutPanel that only auto scrolls vertically. WrapContents is false, and I want it to work like a vertical stack panel. I can't find a way to disable the horizontal scroll. I've googled it, can't find a usable solution so far.

The alternative is to abandon the FlowLayoutPanel, and try another control. What acts somewhat like a WPF stack panel but that expands and shrinks vertically with the contained controls?

A: 

Maybe this msdn forums entry helps you?

Ikaso
Doesn't exactly work. I think I have solved this by putting a FlowLayoutPanel inside an autoscroll Panel.
P a u l