Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When and why should I implement IComponent, IContainer, and ISite?

I've wondered for a long time what IComponent, IContainer, and ISite are for. I've read the documentation, but it is extremely vague (or I'm thinking about it too hard). I know that if I create a class as a component, it can be used in the Visual Studio designer. But I'd really like to know more generally: what does the Component/Container pattern accomplish, and can it make my life easier?

like image 591
Brian Jorgensen Avatar asked Nov 07 '08 20:11

Brian Jorgensen


1 Answers

They are plumbing for the Windows Forms designer. You rarely have to implement them yourself, just derive your component class from Component. Start worrying about them when you want to implement your own designer. Doing so is even less documented.

like image 170
Hans Passant Avatar answered Sep 25 '22 02:09

Hans Passant