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); }
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); }
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); }
public static UISection Create(UIHeader header) { return(Create(header, null, null)); }
public UIDataSourceBuilder Footer(UIHeader footer) { _data.Put("Footer", footer); return(this); }
public UIDataSourceBuilder Header(UIHeader header) { _data.Put("Header", header); return(this); }