How can I scroll the content of a TFlowPanel?
Create your TFlowPanel inside a TScrollBox, with the following properties:
- Align : alLeft
- AutoSize : TRUE
- AutoWrap : FALSE
That should get you the behaviour you are after I think.
If you want to scroll vertically set
FlowPanel1.Align := alTop;
FlowPanel1.AutoSize := True;
FlowPanel1.AUtoWrap := False;