Exemple #1
0
        public static UISection Create(UIHeader header, UIFootBar footer)
        {
            var t = new UISection();

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

            t._uiheaders = header;
            t._footBar   = footer;
            return(t);
        }
Exemple #2
0
        public static UISection Create(UITitle title, UIFootBar footer)
        {
            var t = new UISection();

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

            t._footBar = footer;
            t._title   = title;
            return(t);
        }