示例#1
0
        public static UISection Create(UIHeader header, UITitle title)
        {
            var t = new UISection();

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

            t._uiheaders = header;
            return(t);
        }
示例#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);
        }
示例#3
0
        public static UISection Create(UIHeader header, UIFootBar footer, UITitle title)
        {
            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;
            t._title     = title;
            return(t);
        }
示例#4
0
 public static UISection Create(UIHeader header)
 {
     return(Create(header, null, null));
 }
示例#5
0
 public UIDataSourceBuilder Footer(UIHeader footer)
 {
     _data.Put("Footer", footer);
     return(this);
 }
示例#6
0
 public UIDataSourceBuilder Header(UIHeader header)
 {
     _data.Put("Header", header);
     return(this);
 }