Ejemplo n.º 1
0
 private void fillImageList(FilmstripControl i_filmstripControl, List <Image> i_Images)
 {
     foreach (Image currImage in i_Images)
     {
         FilmstripImage currFSimage = new FilmstripImage(currImage, (string)currImage.Tag);
         i_filmstripControl.AddImage(currFSimage);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="component">The control itself</param>
 public FilmstripControlDesignerActionList(IComponent component)
     : base(component)
 {
     usercontrol = component as FilmstripControl;
     this.service = GetService(typeof(DesignerActionUIService)) as DesignerActionUIService;
 }