Exemple #1
0
        public TooltipCollection Clone()
        {
            TooltipCollection clonedTooltip = new TooltipCollection(count);

            lock (this)
            {
                foreach (Tooltip item in this)
                {
                    clonedTooltip.Add(item);
                }
            }
            return(clonedTooltip);
        }
Exemple #2
0
 public TooltipRegister()
 {
     __tooltips = new TooltipCollection();
 }