Esempio n. 1
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);
        }
Esempio n. 2
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);
        }