Ejemplo n.º 1
0
        public UISection NewSection()
        {
            var t = new UISection();

            t.Sections = this.Sections;
            this.Sections.Add(t);
            return(t);
        }
Ejemplo n.º 2
0
        public static UISection Create()
        {
            var t = new UISection();

            t.Sections = new List <UISection>();
            t.Sections.Add(t);
            return(t);
        }
Ejemplo n.º 3
0
        public UISection NewSection(Array data)
        {
            var t = new UISection();

            t.Sections = this.Sections;
            this.Sections.Add(t);
            t._data = data;
            return(t);
        }
Ejemplo n.º 4
0
        public UISection NewSection(Array data)
        {
            var t = new UISection();

            t.Sections = this.Sections;
            t.parent   = this.parent ?? this;
            this.Sections.Add(t);
            t.data.AddRange(data);
            return(t);
        }
Ejemplo n.º 5
0
        public UISection NewSection()
        {
            var t = new UISection();

            t.parent   = this.parent ?? this;
            t.Sections = this.Sections;
            //  t._header=
            this.Sections.Add(t);
            return(t);
        }
Ejemplo n.º 6
0
        public static UISection Create(UITitle title)
        {
            var t = new UISection();

            t.Sections = new List <UISection>();
            t.Sections.Add(t);
            t._title = title;
            WebMeta meta = new WebMeta();

            return(t);
        }
Ejemplo n.º 7
0
        public static UISection Create(UITitle title, UIFooter footer)
        {
            var t = new UISection();

            t.Sections = new List <UISection>();
            t.Sections.Add(t);
            WebMeta meta = new WebMeta();

            t._uifooter = footer;
            t._title    = title;
            return(t);
        }
Ejemplo n.º 8
0
        public static UISection Create(UIHeader header, UIFooter footer)
        {
            var t = new UISection();

            t.Sections = new List <UISection>();
            t.Sections.Add(t);
            WebMeta meta = new WebMeta();

            t._uiheaders = header;
            t._uifooter  = footer;
            return(t);
        }
Ejemplo n.º 9
0
        public static UISection Create(UIHeader header, UITitle title)
        {
            var t = new UISection();

            t.Sections   = new List <UISection>();
            t._componens = new List <UIView>();
            t.Sections.Add(t);
            t._title = title;
            WebMeta meta = new WebMeta();

            t._uiheaders = header;
            return(t);
        }