Panel Or UserControl

  • Thread starter Thread starter rob
  • Start date Start date
R

rob

I have a combination of multiple controls that I reuse again and again.
In what case would I use a Panel or UserControl to combine these
controls? What is the advantage/disadvantage of one over the other?

Regards,
Rob
 
Rob,
A Panel will usually suffice, unless you need to add more
functionality, such as extended properties and such. If there are
several functions and routines associated with your controls, use a
UserControl. Otherwise, save yourself some time and use a Panel.

-WDaquell
 
Back
Top