示例#1
0
        public static UITitle TabTitle()
        {
            var t = new UITitle();

            t.meta.Put("type", "Tab");
            return(t);
        }
示例#2
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);
        }
示例#3
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);
        }
示例#4
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);
        }