public ImageList()
 {
     this.colorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.transparentColor = Color.Transparent;
     this.imageSize        = DefaultImageSize;
     this.originals        = new ArrayList();
 }
 public ImageList()
 {
     this.colorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.transparentColor = Color.Transparent;
     this.imageSize = DefaultImageSize;
     this.originals = new ArrayList();
 }
 public ImageList(IContainer container)
 {
     this.colorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.transparentColor = Color.Transparent;
     this.imageSize        = DefaultImageSize;
     this.originals        = new ArrayList();
     if (container == null)
     {
         throw new ArgumentNullException("container");
     }
     container.Add(this);
 }
 public ImageList(IContainer container)
 {
     this.colorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.transparentColor = Color.Transparent;
     this.imageSize = DefaultImageSize;
     this.originals = new ArrayList();
     if (container == null)
     {
         throw new ArgumentNullException("container");
     }
     container.Add(this);
 }