Exemplo n.º 1
0
        public XControl Add(XControl xControl)
        {
            if (xControl != null)
            {
                xControl._parent = this;
                _children
                    .Add(xControl);
            }

            return this;
        }
Exemplo n.º 2
0
 public XControl AddRange(XControl[] xControls)
 {
     if(xControls != null)
     {
         foreach (XControl xControl in xControls)
         {
             Add(xControl);
         }
     }
     return this;
 }
Exemplo n.º 3
0
        public XControl Add(XControl xControl)
        {
            if (xControl != null)
            {
                xControl._parent = this;
                _children
                .Add(xControl);
            }

            return(this);
        }