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?
Asked
Active
Viewed 6,513 times
1 Answers
14
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.

Hans Passant
- 922,412
- 146
- 1,693
- 2,536
-
What is the usability of Container & Component for creating a networkable application? – IAbstract Jan 21 '10 at 19:15
-
3its just a pattern/common framework to implement component based software. this book "Programming .NET Components" is great! – mo. Dec 04 '10 at 15:25