is there an event that fires when a child control is added to a parent container control (ie child p

  • Thread starter Thread starter notu
  • Start date Start date
N

notu

after a parent container (panel) control's constructor executes is there an
event that fires as child controls (other panels) are added to the parent
(ie in the init component). I need to process child controls before the
panel is painted.
 
The closest thing that comes to mind is the ParentChanged event of the child
controls you are adding (and from there you could access their Parent
property and manipulate the container)...

Cheers
Daniel
 
Back
Top