有没有这一行有什么区别?

解决方案 »

  1.   

    用来释放组件的。比如拖一个timer到form上,会生成代码
    this.timer1 = new System.Windows.Forms.Timer(this.components);
    然后可以在dispose函数里释放这些资源
    protected override void Dispose( bool disposing )
    {
    if( disposing )
    {
    if (components != null) 
    {
    components.Dispose();
    }
    }
    base.Dispose( disposing );
    }
      

  2.   

    Timer Constructor
    public Timer(IContainer container)
    Initialize a new instance of the Timer class together with the specified container.The Timer constructor enables you to associate a Timer with any Container object. By associating the Timer like this, you hand over control of the lifetime of the Timer to the container. This can be useful if you use a number of components in your application and want to dispose all of them simultaneously. For example, if you associate a Tooltip, and ImageList, and a Timer with a Container, calling Dispose on the container will force disposal of all of these components as well.
      

  3.   

    这是为窗体定义了一个顶级容器,所有控件都放置在里面,并为其赋初始值null
      

  4.   

    不是控件,是组件,像Timer、ImageList、BindingSource...