private void InitImageList()
 {
     lock ( globalImageList )
     {
         if (globalImageList.Images.Count == 0)
         {
             globalImageList.ImageSize        = new System.Drawing.Size(12, 12);
             globalImageList.ColorDepth       = ColorDepth.Depth32Bit;
             globalImageList.TransparentColor = System.Drawing.Color.Transparent;
             ControlUtil.AddImage(globalImageList, "widgets.images.removeAttribute.png");
         }
     }
 }
Exemple #2
0
 private void InitImageList()
 {
     ControlUtil.AddImage(coreImageList, "widgets.images.validationError.png");
     ControlUtil.AddImage(coreImageList, "widgets.images.bulbLarge.png");
     ControlUtil.AddImage(coreImageList, "widgets.images.elementNormal.png");
 }
 private void InitImageList()
 {
     ControlUtil.AddImage(imageList, "widgets.images.elementNormal.png");
     ControlUtil.AddImage(imageList, "widgets.images.elementChoice.png");
     ControlUtil.AddImage(imageList, "widgets.images.elementRequired.png");
 }