partial class Form1
{
/// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null;{
/// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null;
components
Twisted Hardware
Manitra
Try dropping a Timer or ImageList to your form, and investigate the generated code, you'll see that the declared components variable will then be passed as parameter for the constructor in instance declaration of these non-visual controls.
Another thing, since these non-visual controls inherits from component or implements IComponent, they will not be added to the form's (or other container control's) ControlCollection.
Hope this help,
-chris