Пример #1
0
        public UISection NewSection()
        {
            var t = new UISection();

            t.Sections = this.Sections;
            this.Sections.Add(t);
            return(t);
        }
Пример #2
0
        public static UISection Create()
        {
            var t = new UISection();

            t.Sections = new List <UISection>();
            t.Sections.Add(t);
            return(t);
        }
Пример #3
0
        public UISection NewSection(Array data)
        {
            var t = new UISection();

            t.Sections = this.Sections;
            this.Sections.Add(t);
            t._data = data;
            return(t);
        }
Пример #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);
        }
Пример #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);
        }
Пример #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);
        }
Пример #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);
        }
Пример #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);
        }
Пример #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);
        }