views:

65

answers:

1

I have a flowlayoutpanel (flowParent) on a form that hosts a list of flowlayoutpanels (flowchild1, flowchild2, etc).

from the form level, how do i add an item to flowchild1. essentially, how do i reference the child flowlayoutpanel?

+1  A: 

You can either retain the reference when you add that panel to the outer panel, or use Container.getComponent(int).

Software Monkey