/// <summary>
        ///     Creates a new object that is a copy of the current instance.
        /// </summary>
        /// <returns>
        ///     A new object that is a copy of this instance.
        /// </returns>
        public object Clone()
        {
            var o = new LCDControlCollection(Owner);

            foreach (var e in this)
            {
                o.Add(e);
            }
            return(o);
        }
 public LCDContainerControl()
 {
     Controls = new LCDControlCollection(this);
 }